Default to solana=info log level for drone (#5374)

Otherwise prints nothing..
This commit is contained in:
sakridge 2019-07-31 20:00:52 -07:00 committed by Michael Vines
parent a41c7451f1
commit b6ce7ec782
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ use std::process::exit;
pub const NUM_SIGNATURES_FOR_TXS: u64 = 100_000 * 60 * 60 * 24 * 7;
fn main() {
solana_logger::setup();
solana_logger::setup_with_filter("solana=info");
solana_metrics::set_panic_hook("bench-tps");
let matches = cli::build_args().get_matches();

View File

@ -8,7 +8,7 @@ use std::sync::{Arc, Mutex};
use std::thread;
fn main() -> Result<(), Box<error::Error>> {
solana_logger::setup();
solana_logger::setup_with_filter("solana=info");
solana_metrics::set_panic_hook("drone");
let matches = App::new(crate_name!())
.about(crate_description!())