Stop logging manifest in debug

It's excessively verbose and is a json object which leads to the log
lines not being individual lines. We don't really need to be printing
this anymore.

Change-Id: Ief83030835fa7e8c76ca2607135a4f840782bbb9
(cherry picked from commit 958937eb67)
This commit is contained in:
Alex Schultz 2019-11-06 13:13:27 -07:00 committed by Emilien Macchi
parent 7ecdc77ec3
commit 7920221e52
1 changed files with 0 additions and 2 deletions

View File

@ -1595,8 +1595,6 @@ class PythonImageUploader(BaseImageUploader):
for source_manifest in source_manifests:
manifest = json.loads(source_manifest)
LOG.debug('[%s] Current image manifest: [%s]' %
(image, json.dumps(manifest, indent=4)))
config_str = None
if manifest.get('mediaType') == MEDIA_MANIFEST_V2:
config_digest = manifest['config']['digest']