8000
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 42f9a33 commit 5c5f54fCopy full SHA for 5c5f54f
lib/appenders/index.js
@@ -94,7 +94,9 @@ const setup = (config) => {
94
usedAppenders.push(...category.appenders)
95
});
96
Object.keys(config.appenders).forEach((name) => {
97
- if (usedAppenders.includes(name)) {
+ // dodgy hard-coding of special case for tcp-server which may not have
98
+ // any categories associated with it, but needs to be started up anyway
99
+ if (usedAppenders.includes(name) || config.appenders[name].type === 'tcp-server') {
100
getAppender(name, config);
101
}
102
0 commit comments