[DeepNext] Resolve issue #165: Make logging by default on INFO level#181
[DeepNext] Resolve issue #165: Make logging by default on INFO level#181pjedlikowskistx wants to merge 3 commits intodevelopfrom
Conversation
🚧 DeepNext status update🚀 DeepNext is onto it! Hold on... |
🚧 DeepNext status updateReasoning (for context only)Action PlanWhat do you think about the action plan below? How to respond?👌 To ACCEPT the action plan, respond with: ✏️ To REQUEST CHANGES to the action plan, talk to DeepNext following the message format: 🟢 Step finished. Waiting for your response...
|
|
@deepnext |
🚧 DeepNext status updateReasoning (for context only)Action PlanWhat do you think about the action plan below? How to respond?👌 To ACCEPT the action plan, respond with: ✏️ To REQUEST CHANGES to the action plan, talk to DeepNext following the message format: 🟢 Step finished. Waiting for your response...
|
|
@deepnext |
…y default on INFO level
🚧 DeepNext status update💾 Action plan successfully implemented. 🟢 Step finished.
🎉 Issue solved! See you next time! |
| def setup_logging() -> None: | ||
| """Configures Loguru logging level from LOG_LEVEL env variable (default: INFO).""" | ||
| log_level = os.environ.get("LOG_LEVEL", "INFO").upper() | ||
| logger.remove() | ||
| logger.add(sys.stdout, level=log_level) | ||
| logger.debug(f"Loguru logging configured. LOG_LEVEL={log_level}") |
There was a problem hiding this comment.
Add more docstring description.
There was a problem hiding this comment.
✅ DeepNext is applying Your suggestion(s)
🚧 DeepNext status updateFound code review suggestions... applying |
…y default on INFO level
🚧 DeepNext status update('Code review completed. All suggestions applied within 192 seconds.',) |
This is description for the MR created by DeepNext.