Skip to content

Commit 9296ecb

Browse files
authored
BM-1258: switch config mismatch log to be one line (#851)
1 parent 0d1f327 commit 9296ecb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/broker/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -499,8 +499,8 @@ where
499499
);
500500
} else {
501501
tracing::warn!(
502-
"Manual deployment configuration differs from expected defaults for chain ID {chain_id}:\n{}",
503-
warnings.join("\n")
502+
"Manual deployment configuration differs from expected defaults for chain ID {chain_id}: {}",
503+
warnings.join(", ")
504504
);
505505
tracing::warn!("This may indicate a configuration error. Please verify your deployment addresses are correct.");
506506
}

0 commit comments

Comments
 (0)