Add startup log entry

This commit is contained in:
Bryan Ashby 2016-07-19 21:23:41 -06:00
parent 7f1aec4fca
commit 8cd07d2af4
1 changed files with 3 additions and 0 deletions

View File

@ -134,6 +134,9 @@ function initialize(cb) {
}, },
function basicInit(callback) { function basicInit(callback) {
logger.init(); logger.init();
logger.log.info(
{ version : require('../package.json').version },
'**** ENiGMA½ Bulletin Board System Starting Up! ****');
process.on('SIGINT', shutdownSystem); process.on('SIGINT', shutdownSystem);