Skip to content

Commit

Permalink
tiny misleading log msg fix
Browse files Browse the repository at this point in the history
  • Loading branch information
brenzi committed Sep 15, 2023
1 parent 83d5e22 commit 90e1b3a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion teerex/src/migrations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ pub mod v1 {
);

let allow_debug_mode = v0::AllowSGXDebugMode::<T>::get();
log::info!("teerexV1: SGX debug mode was allowed pre_upgrade: {}", allow_debug_mode);
log::info!(
"teerexV1: SGX debug mode (v0) was allowed pre_upgrade: {}",
allow_debug_mode
);
Ok((onchain_version, enclave_count, allow_debug_mode).encode())
}

Expand Down

0 comments on commit 90e1b3a

Please sign in to comment.