You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this.logger.warn(`Details for Config ${shortKey(key)} returned no content. Double check the key is set correctly or that the apprise Config is not empty.`);
59
69
}else{
@@ -64,9 +74,7 @@ export class AppriseWebhookNotifier extends AbstractWebhookNotifier {
64
74
}
65
75
}
66
76
if(!anyOk){
67
-
this.logger.error('No Apprise Configs were valid!');
68
-
this.initialized=false;
69
-
return;
77
+
this.logger.warn('No Apprise Configs were valid!');
70
78
}
71
79
}
72
80
this.initialized=true;
@@ -83,7 +91,7 @@ export class AppriseWebhookNotifier extends AbstractWebhookNotifier {
this.logger.warn(`Unable to push notification. Error returned with 401 which means the TOKEN provided is probably incorrect. Disabling Notifier | Error => ${e.response.body}`);
75
+
this.logger.warn(newError(`Unable to push notification. Error returned with 401 which means the TOKEN provided is probably incorrect. Disabling Notifier \n Response Error => ${e.response.body}`,{cause: e}));
61
76
this.authed=false;
62
77
}else{
63
-
this.logger.warn(`Failed to push notification | Error => ${e.message}`);
78
+
this.logger.warn(newError('Failed to push notification',{cause: e}));
0 commit comments