diff --git a/cumulus/parachains/runtimes/bridge-hubs/common/Cargo.toml b/cumulus/parachains/runtimes/bridge-hubs/common/Cargo.toml index 868f35f4a3663..cb45735bbdcda 100644 --- a/cumulus/parachains/runtimes/bridge-hubs/common/Cargo.toml +++ b/cumulus/parachains/runtimes/bridge-hubs/common/Cargo.toml @@ -16,7 +16,6 @@ cumulus-primitives-core = { path = "../../../../primitives/core", default-featur xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false} pallet-message-queue = { path = "../../../../../substrate/frame/message-queue", default-features = false} snowbridge-core = { path = "../../../../../../parachain/primitives/core", default-features = false } -log = { version = "0.4.20", default-features = false } [features] default = [ "std" ] @@ -29,8 +28,7 @@ std = [ "cumulus-primitives-core/std", "xcm/std", "pallet-message-queue/std", - "snowbridge-core/std", - "log/std" + "snowbridge-core/std" ] runtime-benchmarks = [ diff --git a/cumulus/parachains/runtimes/bridge-hubs/common/src/message_queue.rs b/cumulus/parachains/runtimes/bridge-hubs/common/src/message_queue.rs index 0cc8d4a0f0ff5..15b12ee785b84 100644 --- a/cumulus/parachains/runtimes/bridge-hubs/common/src/message_queue.rs +++ b/cumulus/parachains/runtimes/bridge-hubs/common/src/message_queue.rs @@ -101,7 +101,6 @@ where id: &mut [u8; 32], ) -> Result { use AggregateMessageOrigin::*; - log::info!(target: "xcm", "💫 in process message origin is {:?}.", origin); match origin { Here | Parent | Sibling(_) => XcmpProcessor::process_message(message, origin, meter, id),