From e547378893b8b40c2cc7ad63131cbe34cc25fb89 Mon Sep 17 00:00:00 2001 From: Michael Yang Date: Thu, 15 Feb 2024 12:05:13 -0800 Subject: [PATCH] disable default debug --- app/main.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/app/main.go b/app/main.go index 57cfd72e..57d8b1c1 100644 --- a/app/main.go +++ b/app/main.go @@ -4,14 +4,9 @@ package main // go build -ldflags="-H windowsgui" . import ( - "os" - "github.com/jmorganca/ollama/app/lifecycle" ) func main() { - // TODO - remove as we end the early access phase - os.Setenv("OLLAMA_DEBUG", "1") // nolint:errcheck - lifecycle.Run() }