From 920daa8a8f969c719ece2f759b9ba54a20862437 Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Tue, 14 Dec 2021 12:01:19 +0100 Subject: [PATCH] Remove stray log statement --- crates/diagnostics/src/diagnostics.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/diagnostics/src/diagnostics.rs b/crates/diagnostics/src/diagnostics.rs index a562a33c35..71b138c4e9 100644 --- a/crates/diagnostics/src/diagnostics.rs +++ b/crates/diagnostics/src/diagnostics.rs @@ -104,7 +104,6 @@ impl View for ProjectDiagnosticsEditor { impl ProjectDiagnosticsEditor { fn toggle(workspace: &mut Workspace, _: &Toggle, cx: &mut ViewContext) { - dbg!("HEY!!!!"); let diagnostics = cx.add_model(|cx| ProjectDiagnostics::new(workspace.project().clone(), cx)); workspace.add_item(diagnostics, cx);