Browse Source

disable default debug

Michael Yang 1 year ago
parent
commit
e547378893
1 changed files with 0 additions and 5 deletions
  1. 0 5
      app/main.go

+ 0 - 5
app/main.go

@@ -4,14 +4,9 @@ package main
 // go build -ldflags="-H windowsgui" .
 // go build -ldflags="-H windowsgui" .
 
 
 import (
 import (
-	"os"
-
 	"github.com/jmorganca/ollama/app/lifecycle"
 	"github.com/jmorganca/ollama/app/lifecycle"
 )
 )
 
 
 func main() {
 func main() {
-	// TODO - remove as we end the early access phase
-	os.Setenv("OLLAMA_DEBUG", "1") // nolint:errcheck
-
 	lifecycle.Run()
 	lifecycle.Run()
 }
 }