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
1.2.0-rc4 (main)
OSx, Python 3.12.6
I should be able to control all logging in the application with
from keri import help logger = help.ogler.getLogger() logger.setLevel(logging.DEBUG)
We import from hio as shown below:
hio
form hio import help logger = help.ogler.getLogger() logger.setLevel(logging.DEBUG)
in any KLI command import help from hio, get the logger, and set the log level to debug.
help
If you get the logger from the keri.help package then no log messages show.
keri.help
The text was updated successfully, but these errors were encountered:
#896 fixes this.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Version
1.2.0-rc4 (main)
Environment
OSx, Python 3.12.6
Expected behavior
I should be able to control all logging in the application with
Actual behavior
We import from
hio
as shown below:Steps to reproduce
in any KLI command import
help
fromhio
, get the logger, and set the log level to debug.If you get the logger from the
keri.help
package then no log messages show.The text was updated successfully, but these errors were encountered: