mirror of
https://github.com/danbulant/flying-squid
synced 2026-06-24 17:21:43 +00:00
fix plugin loading logging
This commit is contained in:
parent
baca95c070
commit
8a5fb267ab
1 changed files with 1 additions and 1 deletions
|
|
@ -39,7 +39,7 @@ module.exports.server = function(serv, settings) {
|
||||||
});
|
});
|
||||||
|
|
||||||
serv.on('asap', () => {
|
serv.on('asap', () => {
|
||||||
Object.keys(serv.plugins).map(plugin => serv.log('[PLUGINS] Loaded "' + plugin + '"'));
|
Object.keys(serv.plugins).map(p => serv.log('[PLUGINS] Loaded "' + serv.plugins[p].name + '"'));
|
||||||
});
|
});
|
||||||
|
|
||||||
serv.externalPluginsLoaded = true;
|
serv.externalPluginsLoaded = true;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue