From 8a53bf1027220faf61d4c5c013392d3a4c506816 Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Tue, 24 Feb 2026 14:17:30 +0100 Subject: [PATCH] oh brother --- server/helpers.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/helpers.js b/server/helpers.js index 6377407..8c11b7f 100644 --- a/server/helpers.js +++ b/server/helpers.js @@ -319,15 +319,15 @@ function startPluginsWithDelay(plugins, delay) { plugins.forEach((pluginPath, index) => { setTimeout(() => { const pluginName = path.basename(pluginPath, '.js'); // Extract plugin name from path - logInfo(`-----------------------------------------------------------------`); - logInfo(`Plugin ${pluginName} loaded successfully!`); + consoleCmd.logInfo(`-----------------------------------------------------------------`); + consoleCmd.logInfo(`Plugin ${pluginName} loaded successfully!`); require(pluginPath); }, delay * index); }); // Add final log line after all plugins are loaded setTimeout(() => { - logInfo(`-----------------------------------------------------------------`); + consoleCmd.logInfo(`-----------------------------------------------------------------`); }, delay * plugins.length); }