Cut/copy/paste error in log message

This commit is contained in:
Jaap van Ekris 2023-03-09 10:55:45 +01:00 committed by GitHub
parent 97c1da96d6
commit bd97723f8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ function createFlywheel (rowerSettings) {
if (dataPoint < rowerSettings.minimumTimeBetweenImpulses && maintainMetrics) {
// This shouldn't happen, but let's log it to clarify there is some issue going on here
log.debug(`*** WARNING: currentDt of ${dataPoint} sec is above minimumTimeBetweenImpulses (${rowerSettings.minimumTimeBetweenImpulses} sec)`)
log.debug(`*** WARNING: currentDt of ${dataPoint} sec is below minimumTimeBetweenImpulses (${rowerSettings.minimumTimeBetweenImpulses} sec)`)
}
currentDt.push(dataPoint)