chore: proper error log format (#8105)

Fix some error log formatting to use `{ msg, err }` properly
This commit is contained in:
Elliot DeNolf
2024-09-06 22:48:59 -04:00
committed by GitHub
parent b27e42c484
commit 08fdbcacc0
5 changed files with 13 additions and 9 deletions

View File

@@ -37,7 +37,7 @@ export const connect: Connect = async function connect(
}
}
} catch (err) {
this.payload.logger.error(`Error: cannot connect to SQLite. Details: ${err.message}`, err)
this.payload.logger.error({ err, msg: `Error: cannot connect to SQLite: ${err.message}` })
if (typeof this.rejectInitializing === 'function') {
this.rejectInitializing()
}