Skip to content

Commit

Permalink
fix loud loggings (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
shyamd authored Mar 23, 2024
1 parent 9af305a commit 1496fab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mkdocs_bibtex/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ def on_config(self, config):

# load bibliography data
refs = {}
log.info(f"Loading data from bib files: {bibfiles}")
for bibfile in bibfiles:
log.debug(f"Parsing bibtex file {bibfile!r}...")
log.debug(f"Parsing bibtex file {bibfile}")
bibdata = parse_file(bibfile)
log.info(f"SUCCESS Parsing bibtex file {bibfile!r}")
refs.update(bibdata.entries)

self.bib_data = BibliographyData(entries=refs)
Expand Down Expand Up @@ -208,7 +208,7 @@ def format_citations(self, cite_keys):
self.all_references.update(format_pandoc(entries, self.csl_file))
else:
self.all_references.update(format_simple(entries))
log.info("SUCCESS Formatting all bib entries")
log.debug("SUCCESS Formatting all bib entries")

# 4. Construct quads
quads = [
Expand Down

0 comments on commit 1496fab

Please sign in to comment.