From 604468a2ff68e392e97e3fcfcee148e21fe058a4 Mon Sep 17 00:00:00 2001 From: Evrard Van Espen Date: Tue, 18 Nov 2025 09:40:19 +0000 Subject: [PATCH] Add better logging for style processing --- styles.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/styles.go b/styles.go index d08153e..b86d47c 100644 --- a/styles.go +++ b/styles.go @@ -48,13 +48,13 @@ func compileSCSS() (string, error) { transpiler, err := godartsass.Start(godartsass.Options{}) if err != nil { - log.Fatal(err) + log.Fatal("cannot start transpiler: ", err) } css, err := transpiler.Execute(args) if err != nil { - log.Fatal(err) + log.Fatal("cannot compile SCSS: ", err) } log.Println("CSS compiled")