From 0253793d904f640fc2503fb97607a16d4e6f2eee Mon Sep 17 00:00:00 2001 From: Gavin Wood <gavin@parity.io> Date: Tue, 7 Apr 2020 12:55:46 +0200 Subject: [PATCH] More emoji (#5556) --- substrate/client/consensus/babe/src/aux_schema.rs | 2 +- substrate/client/consensus/slots/src/lib.rs | 2 +- substrate/client/finality-grandpa/src/aux_schema.rs | 2 +- substrate/client/network/src/service.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/substrate/client/consensus/babe/src/aux_schema.rs b/substrate/client/consensus/babe/src/aux_schema.rs index 6f69e65940c..e014c8975ac 100644 --- a/substrate/client/consensus/babe/src/aux_schema.rs +++ b/substrate/client/consensus/babe/src/aux_schema.rs @@ -74,7 +74,7 @@ pub(crate) fn load_epoch_changes<Block: BlockT, B: AuxStore>( let epoch_changes = Arc::new(Mutex::new(maybe_epoch_changes.unwrap_or_else(|| { info!(target: "babe", - "Creating empty BABE epoch changes on what appears to be first startup." + "👶 Creating empty BABE epoch changes on what appears to be first startup." ); EpochChangesFor::<Block, Epoch>::default() }))); diff --git a/substrate/client/consensus/slots/src/lib.rs b/substrate/client/consensus/slots/src/lib.rs index d0f1f6ec4bf..5952856bdaf 100644 --- a/substrate/client/consensus/slots/src/lib.rs +++ b/substrate/client/consensus/slots/src/lib.rs @@ -466,7 +466,7 @@ impl<T: Clone> SlotDuration<T> { cb(client.runtime_api(), &BlockId::number(Zero::zero()))?; info!( - "Loaded block-time = {:?} milliseconds from genesis on first-launch", + "ⱠLoaded block-time = {:?} milliseconds from genesis on first-launch", genesis_slot_duration ); diff --git a/substrate/client/finality-grandpa/src/aux_schema.rs b/substrate/client/finality-grandpa/src/aux_schema.rs index 525a4a99bab..fe652f52fe2 100644 --- a/substrate/client/finality-grandpa/src/aux_schema.rs +++ b/substrate/client/finality-grandpa/src/aux_schema.rs @@ -330,7 +330,7 @@ pub(crate) fn load_persistent<Block: BlockT, B, G>( } // genesis. - info!(target: "afg", "Loading GRANDPA authority set \ + info!(target: "afg", "👴 Loading GRANDPA authority set \ from genesis on what appears to be first startup."); let genesis_authorities = genesis_authorities()?; diff --git a/substrate/client/network/src/service.rs b/substrate/client/network/src/service.rs index d3a72a3ff6d..ef2aa0aa233 100644 --- a/substrate/client/network/src/service.rs +++ b/substrate/client/network/src/service.rs @@ -1069,7 +1069,7 @@ impl<B: BlockT + 'static, H: ExHashT> Future for NetworkWorker<B, H> { && error.contains("Peer ID mismatch") { error!( - "Connecting to bootnode with peer id `{}` and address `{}` failed \ + "💔 Connecting to bootnode with peer id `{}` and address `{}` failed \ because it returned a different peer id!", peer_id, address, -- GitLab