Compare commits

..

1 Commits

Author SHA1 Message Date
9a61396db6 Use winston for logging 2021-03-15 09:46:40 -06:00

View File

@ -120,7 +120,7 @@ async function main() {
["SIGINT", "SIGTERM", "SIGQUIT"].forEach((sig) => {
process.on(sig, async () => {
logger.info(`\nCaught ${sig}, shutting down...`);
logger.info(`Caught ${sig}, shutting down...`);
const results = await Promise.allSettled(
intervals.map((interval) => interval.clear())
);