From 01e2441943bee6ec6cbff67663f47a875d63f31b Mon Sep 17 00:00:00 2001 From: 2mal3 <56305732+2mal3@users.noreply.github.com> Date: Wed, 5 Nov 2025 21:36:08 +0100 Subject: [PATCH] fix(shared): dont log browser start command --- shared/open_browser.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/shared/open_browser.go b/shared/open_browser.go index e2ff862..b6a8543 100644 --- a/shared/open_browser.go +++ b/shared/open_browser.go @@ -7,7 +7,6 @@ import ( "os/exec" ) - func OpenBrowserWindow(url string, fullscreen bool, temp bool) error { bins := []string{"chromium", "chromium-browser"} @@ -26,7 +25,6 @@ func OpenBrowserWindow(url string, fullscreen bool, temp bool) error { for _, bin := range bins { cmd := exec.Command(bin, args...) - fmt.Println(cmd) commandOutput := RunShellCommand(cmd) if commandOutput.ExitCode == 0 { return nil