Revert "Default log level to to RUST_LOG=solana=info (#5296)" (#5302)

This reverts commit c63a38ae57.
This commit is contained in:
Michael Vines
2019-07-27 07:46:45 -07:00
committed by GitHub
parent 64c770275b
commit 7796e87814
5 changed files with 5 additions and 4 deletions

View File

@ -9,7 +9,7 @@ static INIT: Once = Once::new();
/// Setup function that is only run once, even if called multiple times.
pub fn setup() {
INIT.call_once(|| {
env_logger::Builder::from_env(env_logger::Env::new().default_filter_or("solana=info"))
env_logger::Builder::from_default_env()
.default_format_timestamp_nanos(true)
.init();
});