debug: i actually hate errors with no traces

This commit is contained in:
Saahil 2025-01-04 23:04:58 -05:00
parent 04bc6e78de
commit 3211cdb309
No known key found for this signature in database
GPG key ID: 8A8B64515254CFC6
3 changed files with 3 additions and 3 deletions

View file

@ -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({

View file

@ -146,7 +146,7 @@ export function watchForWhenIUseHacktime(app: ModifiedApp) {
}
}
} catch (e) {
console.error(e);
console.error(e, `fucking hackatime`);
}
// console.log(userHacktimeDat)
}, 1000 * 60);

View file

@ -248,7 +248,7 @@ export function setupCronForShipments(app: ModifiedApp) {
);
} catch (e) {
// coulda failed parsing or diff..
console.error(e);
console.error(e, `shipment viewer`);
}
}
}