(ctx context.Context, format string, args ...any)
| 160 | } |
| 161 | |
| 162 | func (conn *SSHConn) Infof(ctx context.Context, format string, args ...any) { |
| 163 | log.Print(fmt.Sprintf("[conn:%s] ", conn.GetName()) + fmt.Sprintf(format, args...)) |
| 164 | blocklogger.Infof(ctx, "[conndebug] "+format, args...) |
| 165 | } |
| 166 | |
| 167 | func (conn *SSHConn) Debugf(ctx context.Context, format string, args ...any) { |
| 168 | blocklogger.Debugf(ctx, "[conndebug] "+format, args...) |
no test coverage detected