Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion substrate/client/informant/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,10 +187,12 @@ where
last_blocks.pop_front();
}

let best_indicator = if n.is_new_best { "🌟" } else { "✨" };
info!(
target: "substrate",
" Imported #{} ({})",
"{best_indicator} Imported #{} ({} -> {})",
format.print_with_color(Colour::White.bold(), n.header.number()),
n.header.parent_hash(),
n.hash,
);
}
Expand Down