Skip to content

Commit

Permalink
fix log.debug issue
Browse files Browse the repository at this point in the history
Signed-off-by: Stepan Blyschak <[email protected]>
  • Loading branch information
stepanblyschak committed Mar 22, 2023
1 parent 92489c2 commit fe14c51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sonic_package_manager/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def from_labels(cls, labels: Dict[str, str]) -> Metadata:
log.debug("Found one YANG module")
elif isinstance(labels_yang_modules, dict):
yang_modules.extend(labels_yang_modules.values())
log.debug("Found YANG modules: {}", labels_yang_modules.keys())
log.debug(f"Found YANG modules: {labels_yang_modules.keys()}")
else:
log.debug("No YANG modules found")

Expand Down

0 comments on commit fe14c51

Please sign in to comment.