mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 01:02:30 +01:00
Use logger instead of console.log
This commit is contained in:
parent
b62db5675d
commit
0fbfee8dc8
1 changed files with 1 additions and 2 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue