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

fix type in debug message

This commit is contained in:
Daniel Hammerschmidt 2025-02-25 14:29:27 +01:00
parent 4a33ae5856
commit acc3404b5b

View file

@ -1153,7 +1153,7 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
Promise.all(warmupDbPromises)
.then(() => Promise.all(warmupActionPromises))
.then(() => {
console.log(('' + (Date.now() - agentCreateTime)).padStart(8), 'AGENT CORE IS ATABLE');
console.log(('' + (Date.now() - agentCreateTime)).padStart(8), 'AGENT CORE IS STABLE');
parent.parent.pluginHandler.callHook('hook_agentCoreIsStable', obj, parent)
});
}