Mayil-SB-Internal-Prod / loguru-II

MIT License
0 stars 0 forks source link

Difficulty in Configuring Loguru to Honor --log-cli-level=INFO in Pytest (hashtag1062) #49

Open vikramsubramanian opened 8 months ago

vikramsubramanian commented 8 months ago

hashtaghashtaghashtag Environment

hashtaghashtaghashtag Description I am encountering an issue with configuring Loguru to work in tandem with Pytest's --log-cli-level flag. Recently I start to switch logging from python native logging to Loguru. It's indeed simple and coll. However, I found when it goes to pytest, it became somehow confusing. My goal is to run Pytest with the flag --log-cli-level=INFO or --log-level=INFO and ensure that DEBUG level messages are not shown in the test output. However, despite various attempts and configurations, DEBUG messages are still being displayed.

hashtaghashtaghashtag Steps to Reproduce

  1. Write a test function that includes loguru logger messages at various levels, including DEBUG.
  2. Run Pytest with the command: python -m pytest -s tests --log-cli-level=INFO.
  3. Observe that DEBUG messages are still appearing in the output.

hashtaghashtaghashtag What I've Tried

hashtaghashtaghashtag Expected Behavior I would expect that running Pytest with --log-cli-level=INFO would result in DEBUG level messages being filtered out from the test output.

hashtaghashtaghashtag Actual Behavior DEBUG level messages are still being displayed in the test output.

hashtaghashtaghashtag Request Could you please provide guidance or a solution on how to configure loguru to respect the --log-cli-level=INFO flag in Pytest? Any assistance or insights into this issue would be greatly appreciated.

Thank you for your time and help. )