We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04c9ca6 commit 2e0d673Copy full SHA for 2e0d673
1 file changed
colrev/packages/crossref/src/crossref_search_source.py
@@ -414,7 +414,7 @@ def _run_api_search(
414
except colrev_exceptions.NotFeedIdentifiableException:
415
pass
416
except RuntimeError as exc:
417
- print(exc)
+ self.logger.debug(f"Exception: {exc}")
418
419
crossref_feed.save()
420
@@ -472,7 +472,11 @@ def _get_masterdata_record(
472
try:
473
474
retrieved_record = query_doi(doi=record.data[Fields.DOI])
475
- except (colrev_exceptions.RecordNotFoundInPrepSourceException, KeyError):
+ except (
476
+ colrev_exceptions.RecordNotFoundInPrepSourceException,
477
+ KeyError,
478
+ ) as exc:
479
+ self.logger.debug(exc)
480
481
retrieved_records = self.api.crossref_query(
482
record_input=record,
0 commit comments