GetRD / academic-file-converter

📚 Import Bibtex publications and Jupyter Notebook blog posts into your Markdown website or book. 将Bibtex转换为Markdown网站

Home Page:https://docs.hugoblox.com/reference/content-types/#automatically-import-publications-from-bibtex

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add logger and verbose mode

gcushen opened this issue · comments

commented
  • Add Python's logger for proper logging.
  • Convert all or most print statements to appropriate level (e.g. Info) logging statements
  • Add -v and --verbose arguments for verbose mode.
  • Only output info type messages in verbose mode

Please merge my PR to fix the first bullet point of your list.

thanks :)

Hello,
I will try to do this...
I just have one question. What does the last point means?
Does it means in verbose mode we need to output every messages including info type messages?
Or does it mean in verbose mode we must output info type messages only?
Sorry if the question seems stupid but I was not sure about this element.

commented

The Verbose mode would display log messages up to Info level (i.e. not display any Debug level messages). More info in the official Python3 logging docs and here: https://realpython.com/python-logging/

Oh 🤭, I forgot there were a Debug Mode. Thank you for your answer.
I went to the second link, it seems it's an interressant website.
I will try to make a first pull request. Thank you for your help.