Lower a bunch of debug

Can't afford to be printing on every transaction error, it will slow
the system down.
This commit is contained in:
Stephen Akridge
2019-03-28 11:45:34 -07:00
committed by sakridge
parent 92e1c4c531
commit 0482f153d0
4 changed files with 17 additions and 17 deletions

View File

@ -861,7 +861,7 @@ impl Accounts {
for k in keys {
if locks.contains(k) {
error_counters.account_in_use += 1;
error!("Account in use: {:?}", k);
debug!("Account in use: {:?}", k);
return Err(TransactionError::AccountInUse);
}
}

View File

@ -16,21 +16,21 @@ fn create_system_account(
program_id: &Pubkey,
) -> Result<(), SystemError> {
if !system_program::check_id(&keyed_accounts[FROM_ACCOUNT_INDEX].account.owner) {
info!("CreateAccount: invalid account[from] owner");
debug!("CreateAccount: invalid account[from] owner");
Err(SystemError::SourceNotSystemAccount)?;
}
if !keyed_accounts[TO_ACCOUNT_INDEX].account.data.is_empty()
|| !system_program::check_id(&keyed_accounts[TO_ACCOUNT_INDEX].account.owner)
{
info!(
debug!(
"CreateAccount: invalid argument; account {} already in use",
keyed_accounts[TO_ACCOUNT_INDEX].unsigned_key()
);
Err(SystemError::AccountAlreadyInUse)?;
}
if lamports > keyed_accounts[FROM_ACCOUNT_INDEX].account.lamports {
info!(
debug!(
"CreateAccount: insufficient lamports ({}, need {})",
keyed_accounts[FROM_ACCOUNT_INDEX].account.lamports, lamports
);
@ -53,7 +53,7 @@ fn assign_account_to_program(
}
fn move_lamports(keyed_accounts: &mut [KeyedAccount], lamports: u64) -> Result<(), SystemError> {
if lamports > keyed_accounts[FROM_ACCOUNT_INDEX].account.lamports {
info!(
debug!(
"Move: insufficient lamports ({}, need {})",
keyed_accounts[FROM_ACCOUNT_INDEX].account.lamports, lamports
);
@ -76,7 +76,7 @@ pub fn entrypoint(
// All system instructions require that accounts_keys[0] be a signer
if keyed_accounts[FROM_ACCOUNT_INDEX].signer_key().is_none() {
info!("account[from] is unsigned");
debug!("account[from] is unsigned");
Err(InstructionError::MissingRequiredSignature)?;
}
@ -96,7 +96,7 @@ pub fn entrypoint(
}
.map_err(|e| InstructionError::CustomError(serialize(&e).unwrap()))
} else {
info!("Invalid instruction data: {:?}", data);
debug!("Invalid instruction data: {:?}", data);
Err(InstructionError::InvalidInstructionData)
}
}