We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc9ee3d commit 3233133Copy full SHA for 3233133
pallets/subtensor/src/migrations/migrate_chain_identity.rs
@@ -140,9 +140,7 @@ pub fn migrate_set_hotkey_identities<T: Config>() -> Weight {
140
&& identity.description.len() <= 1024
141
&& identity.additional.len() <= 1024;
142
if !is_valid {
143
- log::info!(
144
- "Bytes not correct"
145
- );
+ log::info!("Bytes not correct");
146
continue;
147
}
148
@@ -157,9 +155,7 @@ pub fn migrate_set_hotkey_identities<T: Config>() -> Weight {
157
155
weight = weight.saturating_add(T::DbWeight::get().writes(1));
158
156
159
} else {
160
161
- "Failed to decode JSON"
162
+ log::info!("Failed to decode JSON");
163
164
// Mark the migration as completed
165
HasMigrationRun::<T>::insert(&migration_name, true);
0 commit comments