1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-03-09 15:40:18 +00:00

add space for readability of error message

This commit is contained in:
Daniel Hammerschmidt 2025-03-06 17:29:28 +01:00
parent 133e77c8c6
commit 1ac8e520d2

View file

@ -139,7 +139,7 @@ module.exports.pluginHandler = function (parent) {
try {
obj.plugins[p][hookName](...args);
} catch (e) {
console.log("Error occurred while running plugin hook" + p + ':' + hookName + ' (' + e + ')');
console.log("Error occurred while running plugin hook " + p + ':' + hookName + ' (' + e + ')');
}
}
}