Skip to content

Commit

Permalink
use non format logger
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas von Dein authored and TLINDEN committed Sep 25, 2024
1 parent a29104a commit 78ccb8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/lisp.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ func LoadAndEvalFile(env *zygo.Zlisp, path string) error {
// FIXME: check what res (_ here) could be and mean
_, err = env.EvalString(string(code))
if err != nil {
log.Fatalf(env.GetStackTrace(err))
log.Fatal(env.GetStackTrace(err))
}
}

Expand Down

0 comments on commit 78ccb8f

Please sign in to comment.