Browse Source

Change log level of worker start/end to warn in streaming API (#16110)

closed-social-v3
Eugen Rochko 3 years ago
committed by GitHub
parent
commit
aafe65a142
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      streaming/index.js

+ 4
- 4
streaming/index.js View File

@ -99,11 +99,11 @@ const startMaster = () => {
log.warn('UNIX domain socket is now supported by using SOCKET. Please migrate from PORT hack.'); log.warn('UNIX domain socket is now supported by using SOCKET. Please migrate from PORT hack.');
} }
log.info(`Starting streaming API server master with ${numWorkers} workers`);
log.warn(`Starting streaming API server master with ${numWorkers} workers`);
}; };
const startWorker = (workerId) => { const startWorker = (workerId) => {
log.info(`Starting worker ${workerId}`);
log.warn(`Starting worker ${workerId}`);
const pgConfigs = { const pgConfigs = {
development: { development: {
@ -1067,11 +1067,11 @@ const startWorker = (workerId) => {
}, 30000); }, 30000);
attachServerWithConfig(server, address => { attachServerWithConfig(server, address => {
log.info(`Worker ${workerId} now listening on ${address}`);
log.warn(`Worker ${workerId} now listening on ${address}`);
}); });
const onExit = () => { const onExit = () => {
log.info(`Worker ${workerId} exiting, bye bye`);
log.warn(`Worker ${workerId} exiting`);
server.close(); server.close();
process.exit(0); process.exit(0);
}; };

Loading…
Cancel
Save