diff --git a/runtime/laos/src/migrations/remove_pallet_sudo.rs b/runtime/laos/src/migrations/remove_pallet_sudo.rs index aec4a290..46b1fee3 100644 --- a/runtime/laos/src/migrations/remove_pallet_sudo.rs +++ b/runtime/laos/src/migrations/remove_pallet_sudo.rs @@ -5,7 +5,8 @@ pub struct Migration; impl OnRuntimeUpgrade for Migration { fn on_runtime_upgrade() -> Weight { - let _ = migration::clear_storage_prefix(b"Sudo", b"Key", &[], None, None); + let result = migration::clear_storage_prefix(b"Sudo", b"Key", &[], None, None); + log::info!("remove pallet_sudo migration result: {:?}", result.deconstruct()); ::DbWeight::get().reads_writes(0, 1) } }