Skip to content
Snippets Groups Projects
Commit 45520d10 authored by Squirrel's avatar Squirrel Committed by GitHub
Browse files

warn not info (#1190)


* warn not info

Co-authored-by: default avatarKeith Yeung <kungfukeith11@gmail.com>
parent c456ffa3
No related merge requests found
......@@ -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
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment