mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-08-13 13:09:22 +02:00
Add Node.js version to startup log
This commit is contained in:
parent
db91d6d6b7
commit
714f32f695
1 changed files with 6 additions and 2 deletions
|
@ -189,8 +189,12 @@ function initialize(cb) {
|
||||||
function basicInit(callback) {
|
function basicInit(callback) {
|
||||||
logger.init();
|
logger.init();
|
||||||
logger.log.info(
|
logger.log.info(
|
||||||
{ version : require('../package.json').version },
|
{
|
||||||
'**** ENiGMA½ Bulletin Board System Starting Up! ****');
|
version : require('../package.json').version,
|
||||||
|
nodeVersion : process.version,
|
||||||
|
},
|
||||||
|
'**** ENiGMA½ Bulletin Board System Starting Up! ****'
|
||||||
|
);
|
||||||
|
|
||||||
process.on('SIGINT', shutdownSystem);
|
process.on('SIGINT', shutdownSystem);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue