Skip to content

Commit

Permalink
adding more detailed error information to the log message:
Browse files Browse the repository at this point in the history
  • Loading branch information
anitacaron committed Oct 14, 2024
1 parent 363f9d2 commit 02f59c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions util/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,8 +387,8 @@ def robot_prepare_ontology(

try:
check_call(callstring)
except Exception:
logging.error("Preparing %s for dashboard failed...", o_path)
except Exception as e:
logging.error("Preparing %s for dashboard failed: %s", o_path, str(e))


def count_up(dictionary, value):
Expand Down

0 comments on commit 02f59c3

Please sign in to comment.