Skip to content

Commit

Permalink
update warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
Marketen committed Nov 8, 2023
1 parent 397d728 commit 3fa0f28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/brain/src/modules/cron/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export class Cron {
// This is done to avoid unintended DB modifications when the API is down.
// Status can be "UP" | "DOWN" | "UNKNOWN" | "LOADING" | "ERROR";
if (signerApiStatus.status !== "UP") {
logger.debug(`Web3Signer is not UP. Skipping data reload until UP. Trying again in ${this.defaultInterval / 1000} seconds`);
logger.warn(`Web3Signer is ${signerApiStatus.status}. Skipping data reload until Web3Signer is UP. Trying again in ${this.defaultInterval / 1000} seconds`);
return;
}

Expand Down

0 comments on commit 3fa0f28

Please sign in to comment.