From 25901eace877d23cfa0c0d6efb7319700783a75a Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Wed, 6 Nov 2024 11:17:41 -0700 Subject: [PATCH] de-dbg --- crates/extension_host/src/wasm_host/wit.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/extension_host/src/wasm_host/wit.rs b/crates/extension_host/src/wasm_host/wit.rs index b124ded22c2be60a813a0ba411cbddbfd0bcd13b..aadb1ab77a95729dee5bf6cec42716a7bc83b47c 100644 --- a/crates/extension_host/src/wasm_host/wit.rs +++ b/crates/extension_host/src/wasm_host/wit.rs @@ -81,7 +81,7 @@ impl Extension { if version >= latest::MIN_VERSION { // Note: The release channel can be used to stage a new version of the extension API. // We always allow the latest in tests so that the extension tests pass on release branches. - let allow_latest_version = match dbg!(release_channel) { + let allow_latest_version = match release_channel { ReleaseChannel::Dev | ReleaseChannel::Nightly => true, ReleaseChannel::Stable | ReleaseChannel::Preview => cfg!(test), };