fix(server.js): update log with template string (#103)

This commit is contained in:
Alexandr Ivanov 2023-05-22 13:08:32 +03:00 committed by GitHub
parent b0d2aa0a0b
commit fb45552535
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,7 @@ if (!process.env.DISABLE_XORIGIN) {
var port = process.env.PORT || 3000;
bGround.setupBackgroundApp(app, myApp, __dirname).listen(port, function(){
bGround.log('Node is listening on port '+ port + '...')
bGround.log(`Node is listening on port ${port}...`);
});
/******************************************************