diff --git a/substrate/client/consensus/babe/src/aux_schema.rs b/substrate/client/consensus/babe/src/aux_schema.rs
index 6f69e65940c05d60bfef77e839af4887c8910347..e014c8975acee02b1efddae059345b08cd395d6c 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 d0f1f6ec4bf9ea1f91cbe48974981df92d3ac918..5952856bdafd960b06bb6d71b197b0f9982c3c55 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 525a4a99bab5861e57b6fc25b49bbcaccaea7220..fe652f52fe2067e728263efe0acd302d2673be2b 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 d3a72a3ff6d55cd7de7c01699217591d88ca0d54..ef2aa0aa233b6c8df176b5d0338b5d62a9e47583 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,