feat: dont log action:plugins.fireHook

v1.18.x
Barış Soner Uşaklı 6 years ago
parent 596486ddc3
commit a7600b4bbe

@ -100,7 +100,9 @@ module.exports = function (Plugins) {
} }
var hookList = Plugins.loadedHooks[hook]; var hookList = Plugins.loadedHooks[hook];
var hookType = hook.split(':')[0]; var hookType = hook.split(':')[0];
winston.verbose('[plugins/fireHook] ' + hook); if (hook !== 'action:plugins.fireHook') {
winston.verbose('[plugins/fireHook] ' + hook);
}
switch (hookType) { switch (hookType) {
case 'filter': case 'filter':
fireFilterHook(hook, hookList, params, done); fireFilterHook(hook, hookList, params, done);

Loading…
Cancel
Save