fix(server.js): update log with template string (#103)
This commit is contained in:
parent
b0d2aa0a0b
commit
fb45552535
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ if (!process.env.DISABLE_XORIGIN) {
|
||||||
|
|
||||||
var port = process.env.PORT || 3000;
|
var port = process.env.PORT || 3000;
|
||||||
bGround.setupBackgroundApp(app, myApp, __dirname).listen(port, function(){
|
bGround.setupBackgroundApp(app, myApp, __dirname).listen(port, function(){
|
||||||
bGround.log('Node is listening on port '+ port + '...')
|
bGround.log(`Node is listening on port ${port}...`);
|
||||||
});
|
});
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue