fix: Replace fmt.eprint calls with logs.

This commit is contained in:
Spencer Brower
2026-07-21 09:37:30 -04:00
parent 4ea44e8a09
commit 0fa08f3cae
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
package main
import "core:encoding/json"
import "core:fmt"
import "core:log"
import "core:strings"
Frontmatter :: struct {
@@ -38,7 +38,7 @@ parse_frontmatter :: proc(content: string) -> (fm: Frontmatter, body: string, ok
value, err := json.parse_string(json_str, spec = .JSON)
if err != nil {
fmt.eprintfln("failed to parse frontmatter JSON: %v", err)
log.errorf("failed to parse frontmatter JSON: %v", err)
return
}
defer json.destroy_value(value)