Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: correct typo "occured" → "occurred" in error log
Signed-off-by: premsreelathasugeendran <prem.sreelathasugeendran@gmail.com>
  • Loading branch information
premsreelathasugeendran committed May 11, 2026
commit a3c753ad8153632862d73a0af8c8dcbd206c4aa4
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ models.sequelize.sync().then(function () {

// log uncaught exception
process.on('uncaughtException', function (err) {
logger.error('An uncaught exception has occured.')
logger.error('An uncaught exception has occurred.')
logger.error(err)
console.error(err)
logger.error('Process will exit now.')
Expand Down