From a098572eb0c642dfa0d86d57e46e11a96c2b3571 Mon Sep 17 00:00:00 2001 From: Raymond Khalife Date: Thu, 6 Feb 2025 21:38:19 -0500 Subject: [PATCH] chore: clarify log message when deploying to playground --- src/dfx/src/lib/operations/canister/install_canister.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/dfx/src/lib/operations/canister/install_canister.rs b/src/dfx/src/lib/operations/canister/install_canister.rs index a7f6001e09..c75cf8cacc 100644 --- a/src/dfx/src/lib/operations/canister/install_canister.rs +++ b/src/dfx/src/lib/operations/canister/install_canister.rs @@ -332,10 +332,9 @@ async fn wait_for_module_hash( Some(reported_hash) => { if env.get_network_descriptor().is_playground() { // Playground may modify wasm before installing, therefore we cannot predict what the hash is supposed to be. - info!( + debug!( env.get_logger(), - "Something is installed in canister {}. Assuming new code is installed.", - canister_id + "Module hash verification is skipped for playground deployments." ); break; }