Skip to content

Commit b61de98

Browse files
chg: Fix logging messages in split and parse
1 parent c33dd75 commit b61de98

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

deep_reference_parser/parse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def __init__(self, config_file):
5858
msg.good(f"Found {artefact}")
5959
except:
6060
msg.fail(f"Could not download {S3_SLUG}{artefact}")
61-
logger.exception()
61+
logger.exception("Could not download %s%s", S3_SLUG, artefact)
6262

6363
# Check on word embedding and download if not exists
6464

deep_reference_parser/split.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def __init__(self, config_file):
6262
msg.good(f"Found {artefact}")
6363
except:
6464
msg.fail(f"Could not download {S3_SLUG}{artefact}")
65-
logger.exception()
65+
logger.exception("Could not download %s%s", S3_SLUG, artefact)
6666

6767
# Check on word embedding and download if not exists
6868

0 commit comments

Comments
 (0)