We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02dee5f commit 19687b7Copy full SHA for 19687b7
src/sources/ingressNotifiers/IngressNotifier.ts
@@ -37,10 +37,12 @@ export abstract class IngressNotifier {
37
notifs.push(`${!newRemote && requestNotif === undefined ? `${remoteHostStr(req)} ` : ''}${sourceNotif}`);
38
}
39
40
- if (requestNotif !== undefined || sourceValid === false) {
41
- this.logger.warn(notifs.join(' | '));
42
- } else {
43
- this.logger.info(notifs.join(' | '))
+ if(notifs.length > 0) {
+ if (requestNotif !== undefined || sourceValid === false) {
+ this.logger.warn(notifs.join(' | '));
+ } else {
44
+ this.logger.info(notifs.join(' | '))
45
+ }
46
47
48
0 commit comments