From a65e5d28a76d7f0c04003b4af12be21de259389b Mon Sep 17 00:00:00 2001 From: lawl Date: Sun, 19 Jul 2020 01:09:46 +0200 Subject: [PATCH] Don't swallow the error when connection to pulse fails --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 94829fa..c756fe8 100644 --- a/main.go +++ b/main.go @@ -70,7 +70,7 @@ func main() { ui.paClient = paClient if err != nil { - log.Fatalf("Couldn't create pulseaudio client\n") + log.Fatalf("Couldn't create pulseaudio client: %v\n", err) } go updateNoiseSupressorLoaded(paClient, &ui.noiseSupressorState)