server: Log config sites on startup
continuous-integration/appveyor/branch AppVeyor build succeeded Details

master
Jonatan Nilsson 2022-08-14 00:03:57 +00:00
parent ba1f763e90
commit 675994f129
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ export default class Server {
// Start listening
return this.flaska.listenAsync(this.port).then(() => {
this.core.log.info(`Server is listening on port ${this.port} uploading to ${config.get('uploadFolder')}`)
this.core.log.info({ sites: Object.keys(config.get('sites')) }, `Server is listening on port ${this.port}, uploading to ${config.get('uploadFolder')} for following sites`)
})
}
}