Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
warn not info (#1190)
Browse files Browse the repository at this point in the history
* warn not info

Co-authored-by: Keith Yeung <kungfukeith11@gmail.com>
  • Loading branch information
2 people authored and chevdor committed Apr 25, 2022
1 parent 7cf357e commit 46d7588
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions polkadot-parachains/parachains-common/src/xcm_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 46d7588

Please sign in to comment.