Files
pocketbase/tools/logger/log.go
2026-05-03 23:22:40 +02:00

18 lines
297 B
Go

package logger
import (
"log/slog"
"time"
"github.com/tabshift-gh/pocketbase/tools/types"
)
// Log is similar to [slog.Record] bit contains the log attributes as
// preformatted JSON map.
type Log struct {
Time time.Time
Data types.JSONMap[any]
Message string
Level slog.Level
}