Skip to content

Commit

Permalink
Use log level warn instead of error
Browse files Browse the repository at this point in the history
*not all endpoints provide all the data, often users think it is a problem
  • Loading branch information
CastagnaIT committed Aug 20, 2020
1 parent c8de135 commit a97686c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/lib/utils/website.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def extract_api_data(react_context, debug_log=True):
if debug_log:
LOG.debug('Extracted {}', extracted_value)
except (AttributeError, KeyError):
LOG.error('Could not extract {}', path)
LOG.warn('Could not extract {}', path)
return assert_valid_auth_url(api_data)


Expand Down

0 comments on commit a97686c

Please sign in to comment.