Silence a bucketload of logs (#36534)

Closes #ISSUE

Release Notes:

- Silenced a bunch of logs that were on by default
This commit is contained in:
Conrad Irwin
2025-08-19 20:26:56 -06:00
committed by GitHub
parent b12d862236
commit cac80e2ebd
17 changed files with 23 additions and 38 deletions
+2 -2
View File
@@ -161,7 +161,7 @@ impl Client {
working_directory: &Option<PathBuf>,
cx: AsyncApp,
) -> Result<Self> {
log::info!(
log::debug!(
"starting context server (executable={:?}, args={:?})",
binary.executable,
&binary.args
@@ -295,7 +295,7 @@ impl Client {
/// Continuously reads and logs any error messages from the server.
async fn handle_err(transport: Arc<dyn Transport>) -> anyhow::Result<()> {
while let Some(err) = transport.receive_err().next().await {
log::warn!("context server stderr: {}", err.trim());
log::debug!("context server stderr: {}", err.trim());
}
Ok(())