mirror of
https://github.com/System-End/slack-end.git
synced 2026-04-19 23:22:56 +00:00
debug: i actually hate errors with no traces
This commit is contained in:
parent
04bc6e78de
commit
3211cdb309
3 changed files with 3 additions and 3 deletions
|
|
@ -48,7 +48,7 @@ app.start(process.env.PORT || 3000).then(async (d) => {
|
|||
}
|
||||
r();
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
console.error(e, `uptime`);
|
||||
}
|
||||
}, 60_000);
|
||||
app.client.chat.postMessage({
|
||||
|
|
|
|||
|
|
@ -146,7 +146,7 @@ export function watchForWhenIUseHacktime(app: ModifiedApp) {
|
|||
}
|
||||
}
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
console.error(e, `fucking hackatime`);
|
||||
}
|
||||
// console.log(userHacktimeDat)
|
||||
}, 1000 * 60);
|
||||
|
|
|
|||
|
|
@ -248,7 +248,7 @@ export function setupCronForShipments(app: ModifiedApp) {
|
|||
);
|
||||
} catch (e) {
|
||||
// coulda failed parsing or diff..
|
||||
console.error(e);
|
||||
console.error(e, `shipment viewer`);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue