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
{{ message }}
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
The format of the --log argument is unclear now. It only says:
Sets a custom logging filter. Syntax is <target>=<level>, e.g. -lsync=debug.
Log levels (least to most verbose) are error, warn, info, debug, and trace. By default, all targets log info. The global log level can be set with -l<level>.
However the format can be very flexible. E.g. it supports setting log levels for multiple component: info,lsync=debug. Does it follow the env_logger's standard described here?
If so, I think it's necessary to make it explicitly described in the command line flag docs.
The text was updated successfully, but these errors were encountered:
No there is no documentation on all the possible levels. I would also not recommend to copy this over to gossamer. Just come up with your own logging targets. In rust logging targets are for example the crate names if there is no explicit target given.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The format of the
--log
argument is unclear now. It only says:However the format can be very flexible. E.g. it supports setting log levels for multiple component:
info,lsync=debug
. Does it follow theenv_logger
's standard described here?If so, I think it's necessary to make it explicitly described in the command line flag docs.
The text was updated successfully, but these errors were encountered: