Skip to content

Commit

Permalink
Change console log error msg to debug level
Browse files Browse the repository at this point in the history
  • Loading branch information
bsquizz committed Jul 14, 2022
1 parent 73b5aa7 commit d332561
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bonfire/openshift.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def get_console_url():
try:
host = get_json("route", "console", namespace="openshift-console")["spec"]["host"]
except Exception as err:
log.error("unable to obtain console url: %s: %s", err.__class__.__name__, err)
log.debug("unable to obtain console url: %s: %s", err.__class__.__name__, err)
return None
return f"https://{host}"

Expand Down

0 comments on commit d332561

Please sign in to comment.