From 1e1256dbdd82dd59458f78d53dc7593a3b9760b7 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Wed, 11 Oct 2023 17:39:41 -0700 Subject: [PATCH] Set RUST_LOG to info by default in zed-local script --- script/zed-local | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/script/zed-local b/script/zed-local index 683e31ef14..b7574a903b 100755 --- a/script/zed-local +++ b/script/zed-local @@ -55,6 +55,8 @@ let users = [ 'iamnbutler' ] +const RUST_LOG = process.env.RUST_LOG || 'info' + // If a user is specified, make sure it's first in the list const user = process.env.ZED_IMPERSONATE if (user) { @@ -81,7 +83,8 @@ setTimeout(() => { ZED_ALWAYS_ACTIVE: '1', ZED_SERVER_URL: 'http://localhost:8080', ZED_ADMIN_API_TOKEN: 'secret', - ZED_WINDOW_SIZE: `${instanceWidth},${instanceHeight}` + ZED_WINDOW_SIZE: `${instanceWidth},${instanceHeight}`, + RUST_LOG, } }) }