IO-3076 Initial usage reports design.

This commit is contained in:
Patrick Fic
2025-01-09 11:22:08 -08:00
parent 7a88dd1aae
commit d6fbf02092
6 changed files with 163 additions and 3 deletions

View File

@@ -329,7 +329,8 @@ const main = async () => {
main().catch((error) => {
logger.log(`Main-API-Error: Something was not caught in the application.`, "error", "api", null, {
error: error.message,
errorjson: JSON.stringify(error)
errorjson: JSON.stringify(error),
stack: error.stack
});
// Note: If we want the app to crash on all uncaught async operations, we would
// need to put a `process.exit(1);` here