Skip to content

Commit

Permalink
CLEANUP
Browse files Browse the repository at this point in the history
Forked at: 49b1561
Parent branch: origin/master
  • Loading branch information
cecton committed May 28, 2020
1 parent 9c2e726 commit c966d4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/informant/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,11 @@ pub fn build(service: &impl AbstractService, format: OutputFormat) -> impl futur
OutputFormat::Coloured { prefix } => info!(
target: "substrate",
"✨ {}Imported #{} ({})",
prefix, Colour::White.bold().paint(format!("{}", n.header.number())), n.hash,
prefix, Colour::White.bold().paint(n.header.number().to_string()), n.hash,
),
OutputFormat::Plain { prefix } => info!(
target: "substrate", "✨ {}Imported #{} ({})",
prefix, format!("{}", n.header.number()), n.hash,
prefix, n.header.number(), n.hash,
),
}

Expand Down

0 comments on commit c966d4b

Please sign in to comment.