Initial commit

This commit is contained in:
2025-02-23 09:56:16 -06:00
commit dd6b899df3
7 changed files with 353 additions and 0 deletions

9
constants.go Normal file
View File

@@ -0,0 +1,9 @@
package log
import "log/slog"
// custom logging levels not included with slog
const (
LevelTrace = slog.Level(-8) // trace
LevelFatal = slog.Level(12) // fatal
)