@@ -79,7 +79,7 @@ func (s *service) Register(gs *grpc.Server) error {
79
79
}
80
80
81
81
func (s * service ) Prepare (ctx context.Context , pr * snapshotsapi.PrepareSnapshotRequest ) (* snapshotsapi.PrepareSnapshotResponse , error ) {
82
- log .G (ctx ).WithField ( "parent" , pr .Parent ). WithField ( "key" , pr .Key ).Debugf ("prepare snapshot" )
82
+ log .G (ctx ).WithFields (log. Fields { "parent" : pr .Parent , "key" : pr .Key , "snapshotter" : pr . Snapshotter } ).Debugf ("prepare snapshot" )
83
83
sn , err := s .getSnapshotter (pr .Snapshotter )
84
84
if err != nil {
85
85
return nil , err
@@ -100,7 +100,7 @@ func (s *service) Prepare(ctx context.Context, pr *snapshotsapi.PrepareSnapshotR
100
100
}
101
101
102
102
func (s * service ) View (ctx context.Context , pr * snapshotsapi.ViewSnapshotRequest ) (* snapshotsapi.ViewSnapshotResponse , error ) {
103
- log .G (ctx ).WithField ( "parent" , pr .Parent ). WithField ( "key" , pr .Key ).Debugf ("prepare view snapshot" )
103
+ log .G (ctx ).WithFields (log. Fields { "parent" : pr .Parent , "key" : pr .Key , "snapshotter" : pr . Snapshotter } ).Debugf ("prepare view snapshot" )
104
104
sn , err := s .getSnapshotter (pr .Snapshotter )
105
105
if err != nil {
106
106
return nil , err
@@ -119,7 +119,7 @@ func (s *service) View(ctx context.Context, pr *snapshotsapi.ViewSnapshotRequest
119
119
}
120
120
121
121
func (s * service ) Mounts (ctx context.Context , mr * snapshotsapi.MountsRequest ) (* snapshotsapi.MountsResponse , error ) {
122
- log .G (ctx ).WithField ( "key" , mr .Key ).Debugf ("get snapshot mounts" )
122
+ log .G (ctx ).WithFields (log. Fields { "key" : mr .Key , "snapshotter" : mr . Snapshotter } ).Debugf ("get snapshot mounts" )
123
123
sn , err := s .getSnapshotter (mr .Snapshotter )
124
124
if err != nil {
125
125
return nil , err
@@ -135,7 +135,7 @@ func (s *service) Mounts(ctx context.Context, mr *snapshotsapi.MountsRequest) (*
135
135
}
136
136
137
137
func (s * service ) Commit (ctx context.Context , cr * snapshotsapi.CommitSnapshotRequest ) (* ptypes.Empty , error ) {
138
- log .G (ctx ).WithField ( "key" , cr .Key ). WithField ( "name" , cr .Name ).Debugf ("commit snapshot" )
138
+ log .G (ctx ).WithFields (log. Fields { "key" : cr .Key , "snapshotter" : cr . Snapshotter , "name" : cr .Name } ).Debugf ("commit snapshot" )
139
139
sn , err := s .getSnapshotter (cr .Snapshotter )
140
140
if err != nil {
141
141
return nil , err
@@ -153,7 +153,7 @@ func (s *service) Commit(ctx context.Context, cr *snapshotsapi.CommitSnapshotReq
153
153
}
154
154
155
155
func (s * service ) Remove (ctx context.Context , rr * snapshotsapi.RemoveSnapshotRequest ) (* ptypes.Empty , error ) {
156
- log .G (ctx ).WithField ( "key" , rr .Key ).Debugf ("remove snapshot" )
156
+ log .G (ctx ).WithFields (log. Fields { "key" : rr .Key , "snapshotter" : rr . Snapshotter } ).Debugf ("remove snapshot" )
157
157
sn , err := s .getSnapshotter (rr .Snapshotter )
158
158
if err != nil {
159
159
return nil , err
@@ -167,7 +167,7 @@ func (s *service) Remove(ctx context.Context, rr *snapshotsapi.RemoveSnapshotReq
167
167
}
168
168
169
169
func (s * service ) Stat (ctx context.Context , sr * snapshotsapi.StatSnapshotRequest ) (* snapshotsapi.StatSnapshotResponse , error ) {
170
- log .G (ctx ).WithField ( "key" , sr .Key ).Debugf ("stat snapshot" )
170
+ log .G (ctx ).WithFields (log. Fields { "key" : sr .Key , "snapshotter" : sr . Snapshotter } ).Debugf ("stat snapshot" )
171
171
sn , err := s .getSnapshotter (sr .Snapshotter )
172
172
if err != nil {
173
173
return nil , err
@@ -182,7 +182,7 @@ func (s *service) Stat(ctx context.Context, sr *snapshotsapi.StatSnapshotRequest
182
182
}
183
183
184
184
func (s * service ) Update (ctx context.Context , sr * snapshotsapi.UpdateSnapshotRequest ) (* snapshotsapi.UpdateSnapshotResponse , error ) {
185
- log .G (ctx ).WithField ( "key" , sr .Info .Name ).Debugf ("update snapshot" )
185
+ log .G (ctx ).WithFields (log. Fields { "key" : sr .Info .Name , "snapshotter" : sr . Snapshotter } ).Debugf ("update snapshot" )
186
186
sn , err := s .getSnapshotter (sr .Snapshotter )
187
187
if err != nil {
188
188
return nil , err
0 commit comments