Merge pull request #2067 from hedgedoc/add-db-error-to-log

This commit is contained in:
David Mehren 2022-02-04 12:04:49 +01:00 committed by GitHub
commit f553df3fa1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

4
app.js
View file

@ -291,9 +291,9 @@ function syncAndListen () {
process.exit(1)
}
})
}).catch(() => {
}).catch((dbError) => {
if (currentDBTry < maxDBTries) {
logger.warn(`Database cannot be reached. Try ${currentDBTry} of ${maxDBTries}.`)
logger.warn(`Database cannot be reached. Try ${currentDBTry} of ${maxDBTries}. (${dbError})`)
currentDBTry++
setTimeout(function () {
syncAndListen()

View file

@ -7,6 +7,7 @@
### Enhancements
- Libravatar avatars render as ident-icons when no avatar image was uploaded to Libravatar or Gravatar
- Add database connection error message to log output
## <i class="fa fa-tag"></i> 1.9.2 <i class="fa fa-calendar-o"></i> 2021-12-03