feat: add configurable loglevel

This commit is contained in:
2026-04-22 22:29:58 +02:00
parent d6df67b643
commit f796ea229f
7 changed files with 38 additions and 17 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ func CategorizeMediaType(ext string) (MediaType, bool) {
case ".pptx", ".ppt", ".key", ".odp":
return Presentation, true
default:
slog.Debug("marking file as invalid undefined extension")
slog.Debug("marking file as invalid due to its undefined extension")
return "", false
}
}