fix: remove log

This commit is contained in:
Ayman Bagabas 2024-05-14 13:23:55 -04:00
parent 9a1d854f90
commit 88ecbb3984
No known key found for this signature in database
GPG Key ID: C8D51D2157C919AC

2
env.go
View File

@ -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
}
}