Use logger instead of console.log

This commit is contained in:
Ajay Ramachandran 2021-06-24 00:08:19 -04:00
parent b62db5675d
commit 0fbfee8dc8

View file

@ -26,8 +26,7 @@ async function init() {
const dbMode = config.mysql ? 'mysql'
: config.postgres ? 'postgres'
: 'sqlite'
// print database mode
console.log('Database Mode: ' + dbMode)
Logger.info('Database Mode: ' + dbMode)
// Instantiate a Mocha instance.
const mocha = new Mocha();