LogDebug logs a debug message with structured fields
(msg string, attrs ...slog.Attr)
| 81 | |
| 82 | // LogDebug logs a debug message with structured fields |
| 83 | func LogDebug(msg string, attrs ...slog.Attr) { |
| 84 | GetLogger().LogAttrs(context.Background(), slog.LevelDebug, msg, attrs...) |
| 85 | } |
| 86 | |
| 87 | // StructuredInfo logs an info message with structured fields |
| 88 | func StructuredInfo(msg string, attrs ...slog.Attr) { |
nothing calls this directly
no test coverage detected