"vscode:/vscode.git/clone" did not exist on "7f5da69709ce8c0085965a793c24b533029ad65c"
Unverified Commit 60f75560 authored by Daniel Hiltgen's avatar Daniel Hiltgen Committed by GitHub
Browse files

runner: switch logging back to stderr (#8091)

This puts the low-level runner logging back on stderr for consistency with prior releases
parent e28f2d49
......@@ -89,6 +89,7 @@ import (
_ "embed"
"errors"
"fmt"
"os"
"runtime"
"runtime/cgo"
"slices"
......@@ -131,7 +132,7 @@ func llamaLog(level int32, text *C.char, _ unsafe.Pointer) {
return
}
fmt.Print(C.GoString(text))
fmt.Fprint(os.Stderr, C.GoString(text))
}
func GetModelArch(modelPath string) (string, error) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment