diff --git a/lib.go b/lib.go index 75a11d3..cd20494 100644 --- a/lib.go +++ b/lib.go @@ -81,6 +81,9 @@ func StartCwtch(appDir string, torPath string) int { log.Errorf("could not create file log: %v\n", err) } } + if runtime.GOOS == "android" { + log.SetUseColor(false) + } log.SetLevel(log.LevelInfo) if logLevel := os.Getenv("LOG_LEVEL"); strings.ToLower(logLevel) == "debug" { log.SetLevel(log.LevelDebug)