This commit is contained in:
Baris Soner Usakli
2013-12-03 17:43:12 -05:00
parent 610d45bb32
commit 3d18c4015a
3 changed files with 18 additions and 7 deletions

View File

@@ -153,13 +153,19 @@ var fs = require('fs'),
}));
next();
} else next();
} else {
next();
}
}
], function(err) {
if (!err) {
if (global.env === 'development') winston.info('[plugins] Loaded plugin: ' + pluginData.id);
if (global.env === 'development') {
winston.info('[plugins] Loaded plugin: ' + pluginData.id);
}
callback();
} else callback(new Error('Could not load plugin system'))
} else {
callback(new Error('Could not load plugin system'));
}
});
});
};
@@ -212,7 +218,9 @@ var fs = require('fs'),
next(null, value);
}
} else {
if (global.env === 'development') winston.info('[plugins] Expected method \'' + hookObj.method + '\' in plugin \'' + hookObj.id + '\' not found, skipping.');
if (global.env === 'development') {
winston.info('[plugins] Expected method \'' + hookObj.method + '\' in plugin \'' + hookObj.id + '\' not found, skipping.');
}
next(null, value);
}
}, function(err, value) {
@@ -222,7 +230,7 @@ var fs = require('fs'),
}
}
callback.apply(plugins, arguments);
callback.apply(Plugins, arguments);
});
break;
case 'action':