We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Python root logger has default level warning. With the current example, info and debug log will get filtered out
warning
info
debug
we should have additional line such as logging.getLogger().setLevel(logging.NOTSET), so that all logs are processed
logging.getLogger().setLevel(logging.NOTSET)
opentelemetry-python/docs/examples/logs/example.py
Line 37 in af83ef1
The text was updated successfully, but these errors were encountered:
Working on this issue
Sorry, something went wrong.
Rajamanosankari
Successfully merging a pull request may close this issue.
Python root logger has default level
warning
.With the current example,
info
anddebug
log will get filtered outwe should have additional line such as
logging.getLogger().setLevel(logging.NOTSET)
, so that all logs are processedopentelemetry-python/docs/examples/logs/example.py
Line 37 in af83ef1
The text was updated successfully, but these errors were encountered: