Skip to content

Commit 4b1dc4d

Browse files
committed
Reduce info logging
1 parent aa860c8 commit 4b1dc4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/agent/solana/oracle.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ impl Oracle {
260260
let price_account = *load_price_account(&account.data)
261261
.with_context(|| format!("load price account {}", account_key))?;
262262

263-
info!(self.logger, "observed on-chain price account update"; "pubkey" => account_key.to_string(), "price" => price_account.agg.price, "conf" => price_account.agg.conf, "status" => format!("{:?}", price_account.agg.status));
263+
debug!(self.logger, "observed on-chain price account update"; "pubkey" => account_key.to_string(), "price" => price_account.agg.price, "conf" => price_account.agg.conf, "status" => format!("{:?}", price_account.agg.status));
264264

265265
self.data.price_accounts.insert(*account_key, price_account);
266266

0 commit comments

Comments
 (0)