You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently I parse the log level from GO_LOG so users can specify it from environment variable eg as GO_LOG=DEBUG go run
But I want to specify log level per package as we can do with Rust log:
Describe the solution you'd like
Option to set log level for specific modules/packages
RUST_LOG=package_name=DEBUG,other_package=INFO` cargo run # Log level per packageRUST_LOG=DEBUG` cargo run # Global log level
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
I don't know if currently it's even possible to change other loggers
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently I parse the log level from
GO_LOG
so users can specify it from environment variable eg asGO_LOG=DEBUG go run
But I want to specify log level per package as we can do with Rust log:
Describe the solution you'd like
Option to set log level for specific modules/packages
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
I don't know if currently it's even possible to change other loggers
The text was updated successfully, but these errors were encountered: