diff --git a/crates/trigger/src/loader.rs b/crates/trigger/src/loader.rs index f19f8a41fe..eb8e652f9d 100644 --- a/crates/trigger/src/loader.rs +++ b/crates/trigger/src/loader.rs @@ -56,14 +56,6 @@ impl Loader for TriggerLoader { ) })?; let component = spin_componentize::componentize_if_necessary(&bytes)?; - let was_already_component = matches!(component, std::borrow::Cow::Borrowed(_)); - if was_already_component { - terminal::warn!( - "Spin component at path {} is a WebAssembly component instead of a \ - WebAssembly module. Use of the WebAssembly component model is an experimental feature.", - path.display() - ) - } spin_core::Component::new(engine, component.as_ref()) .with_context(|| format!("loading module {path:?}")) }