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
Forest has a set of default logging filters. These filters are quite sensible but they're only used when the RUST_LOG environment variable is not set. Setting RUST_LOG to chain_sync=debug doesn't just change the logging setting for the chain_sync component, it unfortunately also clears all the default filters.
Forest should be changed to always start with the default set of filters and then allow RUST_LOG to augment them.
Other information and links
The logging filters are built in forest/src/logger/mod.rs.
The text was updated successfully, but these errors were encountered:
Issue summary
Forest has a set of default logging filters. These filters are quite sensible but they're only used when the
RUST_LOG
environment variable is not set. SettingRUST_LOG
tochain_sync=debug
doesn't just change the logging setting for thechain_sync
component, it unfortunately also clears all the default filters.Forest should be changed to always start with the default set of filters and then allow
RUST_LOG
to augment them.Other information and links
The logging filters are built in
forest/src/logger/mod.rs
.The text was updated successfully, but these errors were encountered: