Allow override of RUST_LOG (#7705)

This commit is contained in:
Jack May
2020-01-08 09:19:12 -08:00
committed by GitHub
parent 2f5f8e7afd
commit 07855e3125
10 changed files with 32 additions and 18 deletions

View File

@ -93,7 +93,7 @@ pub fn process_instruction(
keyed_accounts: &mut [KeyedAccount],
ix_data: &[u8],
) -> Result<(), InstructionError> {
solana_logger::setup();
solana_logger::setup_with_default("solana=info");
if let Ok(instruction) = limited_deserialize(ix_data) {
match instruction {