safePoll shouldn't produce error messages

Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
This commit is contained in:
automated-signal
2025-10-10 14:23:04 -05:00
committed by GitHub
parent 2fa83f1629
commit dda46cc9f1

View File

@@ -310,7 +310,7 @@ export abstract class Updater {
this.logger.info('safePoll: polling now');
await this.#checkForUpdatesMaybeInstall(CheckType.Normal);
} catch (error) {
this.logger.error(`safePoll: ${Errors.toLogFormat(error)}`);
this.logger.warn(`safePoll: ${Errors.toLogFormat(error)}`);
} finally {
this.#schedulePoll();
}