From ae65d3d558c3830c8d3c7d494b3b1cbb2601176a Mon Sep 17 00:00:00 2001 From: boks1971 Date: Thu, 14 Aug 2025 10:43:25 +0530 Subject: [PATCH] revert --- test/integration_helpers.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/integration_helpers.go b/test/integration_helpers.go index 03266959d..abb6bc149 100644 --- a/test/integration_helpers.go +++ b/test/integration_helpers.go @@ -149,7 +149,7 @@ func waitUntilConnected(t *testing.T, clients ...*testclient.RTCClient) { func createSingleNodeServer(configUpdater func(*config.Config)) *service.LivekitServer { var err error - conf, err := config.NewConfig(`development: true`, true, nil, nil) + conf, err := config.NewConfig("", true, nil, nil) if err != nil { panic(fmt.Sprintf("could not create config: %v", err)) } @@ -157,7 +157,6 @@ func createSingleNodeServer(configUpdater func(*config.Config)) *service.Livekit if configUpdater != nil { configUpdater(conf) } - conf.Logging.Level = "debug" currentNode, err := routing.NewLocalNode(conf) if err != nil {