From 8d952c7d3cb52298b63b5df89f3be5ebdadfa64f Mon Sep 17 00:00:00 2001 From: Davis Vaughan Date: Wed, 11 Dec 2024 13:57:27 -0500 Subject: [PATCH] Tweak expected option name --- crates/lsp/src/logging.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/lsp/src/logging.rs b/crates/lsp/src/logging.rs index ae747eee..ba434784 100644 --- a/crates/lsp/src/logging.rs +++ b/crates/lsp/src/logging.rs @@ -6,7 +6,7 @@ //! The logging system for `air lsp`. //! -//! Logs are controlled by the `air.server.log` setting in VS Code, +//! Logs are controlled by the `air.logLevel` setting in VS Code, //! passed through `InitializeParams` in the arbitrary `initializationOptions` field. //! //! Logs are also controlled by the `AIR_LOG` environment variable. This is preferred @@ -35,7 +35,7 @@ use tracing_subscriber::{ }; // TODO: -// - Add `air.server.log` as a VS Code extension option that sets the log level, +// - Add `air.logLevel` as a VS Code extension option that sets the log level, // and pass it through the arbitrary `initializationOptions` field of `InitializeParams`. const LOG_ENV_KEY: &str = "AIR_LOG";