diff --git a/crates/biome_service/src/workspace.rs b/crates/biome_service/src/workspace.rs
index 1da811a2083b..d862d566e984 100644
--- a/crates/biome_service/src/workspace.rs
+++ b/crates/biome_service/src/workspace.rs
@@ -221,7 +221,6 @@ impl FileFeaturesResult {
 
     /// Checks whether the file support the given `feature`
     fn supports_for(&self, feature: &FeatureName) -> bool {
-        dbg!(&self.features_supported);
         self.features_supported
             .get(feature)
             .map(|support_kind| matches!(support_kind, SupportKind::Supported))