We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc15d5e commit bf0c7abCopy full SHA for bf0c7ab
config_handler/config_handler.py
@@ -146,7 +146,8 @@ def load_config_env(self) -> dict:
146
if environ['GITHUB_ACTIONS']:
147
list_item = 'INPUT_' + list_item
148
149
- self.logger.debug('Config `' + str(list_item) + '` within parent `' + str(parent_item) + '` - ' + str(environ[list_item.replace('.', '_').upper()]))
+ self.logger.debug('Config `' + str(list_item) + '` within parent `' + str(parent_item))
150
+ self.logger.debug('Config value - ' + str(environ[list_item.replace('.', '_').upper()]))
151
152
item_path = list_item.split('.')
153
for item in reversed(item_path):
0 commit comments