mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 22:46:27 +00:00
fix: invalid schedule should only warn in logs (#683)
This commit is contained in:
parent
ddb1629d9a
commit
f2f15c0650
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ function isScheduledNow(config) {
|
|||
}
|
||||
const [validSchedule, errorMessage] = hasValidSchedule(configSchedule);
|
||||
if (!validSchedule) {
|
||||
config.logger.error(errorMessage);
|
||||
config.logger.warn(errorMessage);
|
||||
return true;
|
||||
}
|
||||
let now = moment();
|
||||
|
|
Loading…
Reference in a new issue