Skip to content

Commit

Permalink
fix(c-bridge): json metrics syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
guidiaz committed Sep 23, 2024
1 parent d90b263 commit cd2440c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bridges/centralized-ethereum/src/actors/watch_dog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ impl WatchDog {

metrics.push_str(&format!("\"runningSecs\": {running_secs}, "));
metrics.push_str(&format!("\"status\": \"{}\"", status.to_string()));
metrics.push_str("}}");
metrics.push_str("}");
log::info!("{metrics}");

(eth_balance, wit_balance)
Expand Down

0 comments on commit cd2440c

Please sign in to comment.