Skip to content

Commit 7c34e42

Browse files
authored
rm println (#1962)
1 parent b4d4302 commit 7c34e42

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

programs/drift/src/state/perp_market.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -739,9 +739,11 @@ impl PerpMarket {
739739
let oracle_plus_funding_basis = oracle_price.safe_add(last_funding_basis)?.cast::<u64>()?;
740740

741741
let median_price = if last_fill_price > 0 {
742-
println!(
742+
msg!(
743743
"last_fill_price: {} oracle_plus_funding_basis: {} oracle_plus_basis_5min: {}",
744-
last_fill_price, oracle_plus_funding_basis, oracle_plus_basis_5min
744+
last_fill_price,
745+
oracle_plus_funding_basis,
746+
oracle_plus_basis_5min
745747
);
746748
let mut prices = [
747749
last_fill_price,

0 commit comments

Comments
 (0)