Skip to content
This repository was archived by the owner on Aug 6, 2025. It is now read-only.

Commit 13319ae

Browse files
authored
Reduce log spam (image config) and gitignore change (#3)
1 parent 26bed05 commit 13319ae

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,6 @@ ENV/
99

1010
# pycharm proj
1111
.idea
12+
13+
# stray tar.gz files used for manual testing
14+
*.tar.gz

core/registry.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ def process_image(self, tmp_dir_name, image_config):
6666
self._logger.info('Processing image', repo_tags=repo_tags)
6767
image_start_time = time.time()
6868
config_parsed = self._load_json_file(config_path)
69-
self._logger.info('Parsed image config', config_parsed=config_parsed)
69+
70+
# warning - spammy
71+
self._logger.verbose('Parsed image config', config_parsed=config_parsed)
7072

7173
for repo in repo_tags:
7274
repo_tag_start_time = time.time()

0 commit comments

Comments
 (0)