Skip to content

Commit

Permalink
chore(NA): increase max listeners on log reporter (#63845) (#63882)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic committed Apr 17, 2020
1 parent d26b213 commit 19ed395
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/legacy/server/logging/log_reporter.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import { LogInterceptor } from './log_interceptor';
// thrown every time we start the server.
// In order to keep using the legacy logger until we remove it I'm just adding
// a new hard limit here.
process.stdout.setMaxListeners(15);
process.stdout.setMaxListeners(25);

export function getLoggerStream({ events, config }) {
const squeeze = new Squeeze(events);
Expand Down

0 comments on commit 19ed395

Please sign in to comment.