Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RSDK-2915 - move transform cam errors found in debug category to error category #2317

2 changes: 1 addition & 1 deletion robot/web/stream/stream.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func (opts *BackoffTuningOptions) getErrorThrottledHandler(logger golog.Logger)
}

sleep := opts.GetSleepTimeFromErrorCount(errorCount)
logger.Debugw("error getting media", "error", err, "count", errorCount, "sleep", sleep)
logger.Errorw("error getting media", "error", err, "count", errorCount, "sleep", sleep)
utils.SelectContextOrWait(ctx, sleep)
}
}