From 88ecbb398449188ead6e3c561fdf67ccd66c909a Mon Sep 17 00:00:00 2001 From: Ayman Bagabas Date: Tue, 14 May 2024 13:23:55 -0400 Subject: [PATCH] fix: remove log --- env.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/env.go b/env.go index ab5a4168..87ef1ef7 100644 --- a/env.go +++ b/env.go @@ -2,7 +2,6 @@ package lipgloss import ( "io" - "log" "os" "strconv" "strings" @@ -119,7 +118,6 @@ func envColorProfile(env map[string]string) (p Profile) { p = Ascii // Default to ASCII setProfile := func(profile Profile) { if profile < p { - log.Output(3, "Setting profile to "+profile.String()) p = profile } }