From 19a0e1cf541e8dbda75919ee86d8ebfb43956ae6 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Thu, 17 Sep 2015 15:04:32 -0400 Subject: [PATCH] adding a log for --activate command --- app.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app.js b/app.js index 73b5f7c3c0..bd2c08fd5f 100644 --- a/app.js +++ b/app.js @@ -289,6 +289,8 @@ function activate() { var plugin = nconf.get('activate'), db = require('./src/database'); + winston.info('Activating plugin %s', plugin); + db.sortedSetAdd('plugins:active', plugin, 1, start); }); }