Change action namespace to 'debug' for LSP log and syntax tree view

Max Brunsfeld created

Change summary

crates/language_tools/src/lsp_log.rs          | 2 +-
crates/language_tools/src/syntax_tree_view.rs | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

Detailed changes

crates/language_tools/src/lsp_log.rs 🔗

@@ -74,7 +74,7 @@ pub(crate) struct LogMenuItem {
     pub logs_selected: bool,
 }
 
-actions!(log, [OpenLanguageServerLogs]);
+actions!(debug, [OpenLanguageServerLogs]);
 
 pub fn init(cx: &mut AppContext) {
     let log_store = cx.add_model(|cx| LogStore::new(cx));

crates/language_tools/src/syntax_tree_view.rs 🔗

@@ -18,7 +18,7 @@ use workspace::{
     ToolbarItemLocation, ToolbarItemView, Workspace,
 };
 
-actions!(log, [OpenSyntaxTreeView]);
+actions!(debug, [OpenSyntaxTreeView]);
 
 pub fn init(cx: &mut AppContext) {
     cx.add_action(