Skip to content

Commit bf0c7ab

Browse files
fix: Fix logging to improve clarity
1 parent cc15d5e commit bf0c7ab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

config_handler/config_handler.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,8 @@ def load_config_env(self) -> dict:
146146
if environ['GITHUB_ACTIONS']:
147147
list_item = 'INPUT_' + list_item
148148

149-
self.logger.debug('Config `' + str(list_item) + '` within parent `' + str(parent_item) + '` - ' + str(environ[list_item.replace('.', '_').upper()]))
149+
self.logger.debug('Config `' + str(list_item) + '` within parent `' + str(parent_item))
150+
self.logger.debug('Config value - ' + str(environ[list_item.replace('.', '_').upper()]))
150151

151152
item_path = list_item.split('.')
152153
for item in reversed(item_path):

0 commit comments

Comments
 (0)