Compare commits

..

1 Commits

Author SHA1 Message Date
d44aae0eff Use winston for logging 2021-03-14 21:30:41 -06:00
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -340,7 +340,7 @@ export function ticketize(
* @param firstRun whether this is the first run * @param firstRun whether this is the first run
*/ */
async function fetchAndStoreNewVoicemails(firstRun = false) { async function fetchAndStoreNewVoicemails(firstRun = false) {
logger.verbose("Checking for new voicemails"); logger.info("Checking for new voicemails");
const extensions = await getValidRCExtensions(); const extensions = await getValidRCExtensions();
return Promise.all( return Promise.all(
extensions.map((extension) => extensions.map((extension) =>