(ctx context.Context, format string, args ...any)
| 114 | } |
| 115 | |
| 116 | func (conn *WslConn) Infof(ctx context.Context, format string, args ...any) { |
| 117 | log.Print(fmt.Sprintf("[conn:%s] ", conn.GetName()) + fmt.Sprintf(format, args...)) |
| 118 | blocklogger.Infof(ctx, "[conndebug] "+format, args...) |
| 119 | } |
| 120 | |
| 121 | func (conn *WslConn) Debugf(ctx context.Context, format string, args ...any) { |
| 122 | blocklogger.Infof(ctx, "[conndebug] "+format, args...) |
no test coverage detected