-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Logger] - introduce a uniform system for logging information, warnings and errors across Supervision #835
Comments
Hey @SkalskiP I'd like to work on this issue, however I don't see there's a need for development work here.
This could be easily solved with the built-in LOG = logging.getLogger(__name__)
# ...
LOG.info("Doing something very important") This captures the level of the message, location, and timestamp. Usually, it's up to the user to configure the logger to his preferences (formatting, handlers, etc.). If you think this might be useful, we can provide a helper
Could you elaborate more on this requirement? So far, I've seen this useful for warnings (e.g. |
Hi @iamhatesz 👋🏻
|
Hi @SkalskiP, is this issue for beginners? Can I give it a try? |
Description
This system will empower users to selectively filter messages based on their importance or pause logging as needed.
Essential features of this upgraded system include:
Additional
The text was updated successfully, but these errors were encountered: