Skip to content

Commit

Permalink
Reduce log spam (image config) and gitignore change (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
omesser authored Feb 6, 2021
1 parent 26bed05 commit 13319ae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ ENV/

# pycharm proj
.idea

# stray tar.gz files used for manual testing
*.tar.gz
4 changes: 3 additions & 1 deletion core/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ def process_image(self, tmp_dir_name, image_config):
self._logger.info('Processing image', repo_tags=repo_tags)
image_start_time = time.time()
config_parsed = self._load_json_file(config_path)
self._logger.info('Parsed image config', config_parsed=config_parsed)

# warning - spammy
self._logger.verbose('Parsed image config', config_parsed=config_parsed)

for repo in repo_tags:
repo_tag_start_time = time.time()
Expand Down

0 comments on commit 13319ae

Please sign in to comment.