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
The Winston patch publishes on the diagnostic channel all logs that Winston collects. I would expect as an end-user that only messages above the configured Winston log level get published.
Current situation:
import * as appInsights from 'applicationinsights';
import * as winston from 'winston';
const logger = winston.createLogger({
level: 'warn',
});
appInsights.setup();
appInsights.start();
logger.debug('This should not trigger a publish on the diagnostic-channel - but it does');
The Winston patch publishes on the diagnostic channel all logs that Winston collects. I would expect as an end-user that only messages above the configured Winston log level get published.
Current situation:
Links:
The text was updated successfully, but these errors were encountered: