registry: avoid formatting errors with %#v
Signed-off-by: Cezar Sa Espinola <cezarsa@gmail.com>master
							parent
							
								
									b49f8ed894
								
							
						
					
					
						commit
						e015cbadd6
					
				|  | @ -246,7 +246,7 @@ func (buh *blobUploadHandler) PutBlobUploadComplete(w http.ResponseWriter, r *ht | |||
| 			case distribution.ErrBlobInvalidLength, distribution.ErrBlobDigestUnsupported: | ||||
| 				buh.Errors = append(buh.Errors, v2.ErrorCodeBlobUploadInvalid.WithDetail(err)) | ||||
| 			default: | ||||
| 				ctxu.GetLogger(buh).Errorf("unknown error completing upload: %#v", err) | ||||
| 				ctxu.GetLogger(buh).Errorf("unknown error completing upload: %v", err) | ||||
| 				buh.Errors = append(buh.Errors, errcode.ErrorCodeUnknown.WithDetail(err)) | ||||
| 			} | ||||
| 
 | ||||
|  |  | |||
|  | @ -64,7 +64,7 @@ func (bs *blobStore) Put(ctx context.Context, mediaType string, p []byte) (distr | |||
| 		// content already present
 | ||||
| 		return desc, nil | ||||
| 	} else if err != distribution.ErrBlobUnknown { | ||||
| 		context.GetLogger(ctx).Errorf("blobStore: error stating content (%v): %#v", dgst, err) | ||||
| 		context.GetLogger(ctx).Errorf("blobStore: error stating content (%v): %v", dgst, err) | ||||
| 		// real error, return it
 | ||||
| 		return distribution.Descriptor{}, err | ||||
| 	} | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue