Skip to content

Commit

Permalink
chore: more readable error message
Browse files Browse the repository at this point in the history
  • Loading branch information
JemmaLDaniel committed Mar 4, 2024
1 parent 08bdb71 commit e9db8c3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion marl_eval/json_tools/json_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,10 @@ def pull_neptune_data(
# unzipped.
continue
except Exception as e:
print(f"An error occurred while unzipping or storing {file_path}: {e}")
print(
f"The following error occurred while unzipping or storing JSON \
data for run {run_id} at path {file_path}: {e}"
)
run.stop()

# Restore neptune logger level
Expand Down

0 comments on commit e9db8c3

Please sign in to comment.