From 592cb1f0b6e9993902576e535ea9d5b9baf280b2 Mon Sep 17 00:00:00 2001 From: Chevdor Date: Mon, 25 Apr 2022 09:52:57 +0200 Subject: [PATCH] warn not info (#1190) (#1212) * warn not info Co-authored-by: Keith Yeung Co-authored-by: Squirrel Co-authored-by: Keith Yeung --- polkadot-parachains/parachains-common/src/xcm_config.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/polkadot-parachains/parachains-common/src/xcm_config.rs b/polkadot-parachains/parachains-common/src/xcm_config.rs index 63b388acaeb..f5004c9c674 100644 --- a/polkadot-parachains/parachains-common/src/xcm_config.rs +++ b/polkadot-parachains/parachains-common/src/xcm_config.rs @@ -56,9 +56,9 @@ impl ShouldExecute for DenyReserveTransferToRelayChain { if matches!(origin, MultiLocation { parents: 1, interior: Here }) && message.0.iter().any(|inst| matches!(inst, ReserveAssetDeposited { .. })) { - log::info!( - target: "runtime::xcm-barier", - "Unexpected Reserve Assets Deposited on the relay chain", + log::warn!( + target: "xcm::barrier", + "Unexpected ReserveAssetDeposited from the relay chain", ); } // Permit everything else