mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-27 02:48:34 +00:00
Set log level to debug for preview deployment
Also, add a log statement when we receive the interrupt signal. Co-Authored-By: Max Brunsfeld <max@zed.dev>
This commit is contained in:
parent
c20204d269
commit
b150efbd96
2 changed files with 2 additions and 1 deletions
|
@ -1,3 +1,3 @@
|
||||||
ZED_ENVIRONMENT=preview
|
ZED_ENVIRONMENT=preview
|
||||||
RUST_LOG=info
|
RUST_LOG=debug
|
||||||
INVITE_LINK_PREFIX=https://zed.dev/invites/
|
INVITE_LINK_PREFIX=https://zed.dev/invites/
|
||||||
|
|
|
@ -69,6 +69,7 @@ async fn main() -> Result<()> {
|
||||||
tokio::signal::ctrl_c()
|
tokio::signal::ctrl_c()
|
||||||
.await
|
.await
|
||||||
.expect("failed to listen for interrupt signal");
|
.expect("failed to listen for interrupt signal");
|
||||||
|
tracing::info!("Received interrupt signal");
|
||||||
rpc_server.teardown();
|
rpc_server.teardown();
|
||||||
})
|
})
|
||||||
.await?;
|
.await?;
|
||||||
|
|
Loading…
Reference in a new issue