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);
}
}