From 203e6bc6b2ef60fdc41e243fb5fd2608cc18024f Mon Sep 17 00:00:00 2001 From: Aaron Bieber Date: Sun, 12 Sep 2021 07:30:35 -0600 Subject: [PATCH] Remove trace lines about NO_COLOR. --- cmd/headscale/headscale.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/cmd/headscale/headscale.go b/cmd/headscale/headscale.go index ca44321..e4334e4 100644 --- a/cmd/headscale/headscale.go +++ b/cmd/headscale/headscale.go @@ -22,14 +22,12 @@ func main() { colors = true default: // no color, return text as is. - log.Trace().Msg("Colors are not supported, disabling") colors = false } // Adhere to no-color.org manifesto of allowing users to // turn off color in cli/services if _, noColorIsSet := os.LookupEnv("NO_COLOR"); noColorIsSet { - log.Trace().Msg("NO_COLOR is set, disabling colors") colors = false }