From b150efbd966e93952fe73756ff273cd4a1b3996e Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Tue, 13 Dec 2022 22:38:55 +0100 Subject: [PATCH] Set log level to debug for preview deployment Also, add a log statement when we receive the interrupt signal. Co-Authored-By: Max Brunsfeld --- crates/collab/k8s/environments/preview.sh | 2 +- crates/collab/src/main.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/collab/k8s/environments/preview.sh b/crates/collab/k8s/environments/preview.sh index 4d9dd849e9..ed037b0f0c 100644 --- a/crates/collab/k8s/environments/preview.sh +++ b/crates/collab/k8s/environments/preview.sh @@ -1,3 +1,3 @@ ZED_ENVIRONMENT=preview -RUST_LOG=info +RUST_LOG=debug INVITE_LINK_PREFIX=https://zed.dev/invites/ diff --git a/crates/collab/src/main.rs b/crates/collab/src/main.rs index 8ad1313d1e..63daed173b 100644 --- a/crates/collab/src/main.rs +++ b/crates/collab/src/main.rs @@ -69,6 +69,7 @@ async fn main() -> Result<()> { tokio::signal::ctrl_c() .await .expect("failed to listen for interrupt signal"); + tracing::info!("Received interrupt signal"); rpc_server.teardown(); }) .await?;