allow logger by default

This commit is contained in:
Henry Heng
2023-07-08 23:26:28 +01:00
committed by GitHub
parent e977fe7d70
commit f83f1c64d3
+1 -1
View File
@@ -61,7 +61,7 @@ export class App {
this.app = express()
// Add the expressRequestLogger middleware to log all requests
if (process.env.DEBUG === 'true') this.app.use(expressRequestLogger)
this.app.use(expressRequestLogger)
}
async initDatabase() {