fix: Removed thor: prefixes from log messages.

This commit is contained in:
Spencer Brower
2026-07-19 12:24:14 -04:00
parent 398f0eb1b4
commit 5c689638b1
6 changed files with 33 additions and 17 deletions
+1 -1
View File
@@ -36,7 +36,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("thor: failed to parse frontmatter JSON: %v", err)
fmt.eprintfln("failed to parse frontmatter JSON: %v", err)
return
}
defer json.destroy_value(value)