From f5d48a398d0bf8e26e211e291b1f9610f69b8870 Mon Sep 17 00:00:00 2001 From: Andrei Tudor Date: Mon, 7 Apr 2025 16:34:14 +0300 Subject: [PATCH] Fixed double message in the loader when an event starts --- DiscordBotCore.PluginManagement.Loading/PluginLoader.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/DiscordBotCore.PluginManagement.Loading/PluginLoader.cs b/DiscordBotCore.PluginManagement.Loading/PluginLoader.cs index d65ed52..f1982f1 100644 --- a/DiscordBotCore.PluginManagement.Loading/PluginLoader.cs +++ b/DiscordBotCore.PluginManagement.Loading/PluginLoader.cs @@ -155,8 +155,6 @@ public sealed class PluginLoader : IPluginLoader new DirectoryInfo(eventConfigDirectory)); dbEvent.Start(args); - - _Logger.Log("Event started: " + dbEvent.Name, this); return true; }