func (l *logLine) assignRespTime(time string) error {
    if time == hyphen {
        return fmt.Errorf("assign '%s': %w", time, errBadRespTime)
    }
    v, err := strconv.Atoi(time)