Log logs a message with no parameters.
(ctx context.Context, l *Logger, text string)
| 60 | |
| 61 | // Log logs a message with no parameters. |
| 62 | func Log(ctx context.Context, l *Logger, text string) { |
| 63 | Emit(ctx, l, debugMessageWithParams[voidParamValue, voidParamValue, voidParamValue, voidParamValue, voidParamValue, voidParamValue]{text: text}) |
| 64 | } |
| 65 | |
| 66 | // Log1 logs a message with one parameter. |
| 67 | func Log1[T1 ParamWriter](ctx context.Context, l *Logger, format string, value1 T1) { |