1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-02-15 17:14:03 +02:00
2024-09-29 21:09:46 +03:00

18 lines
296 B
Go

package logger
import (
"log/slog"
"time"
"github.com/pocketbase/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
}