diff --git a/cli/src/browser.rs b/cli/src/browser.rs index 4332b7a4ebed..317cf98af84d 100644 --- a/cli/src/browser.rs +++ b/cli/src/browser.rs @@ -41,9 +41,9 @@ async fn start_inner(chain_spec: String, log_level: String) -> Result sc_cli::Result<()> { info!("{}", version.name); info!(" version {}", config.full_version()); info!(" by {}, 2017-2020", version.author); - info!("Chain specification: {}", config.expect_chain_spec().name()); - info!("Node name: {}", config.name); - info!("Roles: {}", config.display_role()); + info!("📋 Chain specification: {}", config.expect_chain_spec().name()); + info!("🏷 Node name: {}", config.name); + info!("👤 Roles: {}", config.display_role()); if is_kusama { - info!("Native runtime: {}", service::KusamaExecutor::native_version().runtime_version); + info!("⛓ Native runtime: {}", service::KusamaExecutor::native_version().runtime_version); info!("----------------------------"); info!("This chain is not in any way"); info!(" endorsed by the "); @@ -71,7 +71,7 @@ pub fn run(version: VersionInfo) -> sc_cli::Result<()> { service::kusama_runtime::UncheckedExtrinsic, >(config, opt.authority_discovery_enabled, grandpa_pause) } else { - info!("Native runtime: {}", service::PolkadotExecutor::native_version().runtime_version); + info!("⛓ Native runtime: {}", service::PolkadotExecutor::native_version().runtime_version); run_service_until_exit::< service::polkadot_runtime::RuntimeApi, diff --git a/validation/src/block_production.rs b/validation/src/block_production.rs index 5fb3dd8a62ec..eeb9b009f5e8 100644 --- a/validation/src/block_production.rs +++ b/validation/src/block_production.rs @@ -317,7 +317,7 @@ impl CreateProposalData where let (new_block, storage_changes, proof) = block_builder.build()?.into_inner(); - info!("Prepared block for proposing at {} [hash: {:?}; parent_hash: {}; extrinsics: [{}]]", + info!("🎁 Prepared block for proposing at {} [hash: {:?}; parent_hash: {}; extrinsics: [{}]]", new_block.header.number, Hash::from(new_block.header.hash()), new_block.header.parent_hash,