DebugfCtx logs the given formatted string and args to the debug log level with an optional log key.
(ctx context.Context, logKey LogKey, format string, args ...any)
| 186 | |
| 187 | // DebugfCtx logs the given formatted string and args to the debug log level with an optional log key. |
| 188 | func DebugfCtx(ctx context.Context, logKey LogKey, format string, args ...any) { |
| 189 | logTo(ctx, LevelDebug, logKey, format, args...) |
| 190 | } |
| 191 | |
| 192 | // TracefCtx logs the given formatted string and args to the trace log level with an optional log key. |
| 193 | func TracefCtx(ctx context.Context, logKey LogKey, format string, args ...any) { |