This commit is contained in:
2022-12-09 14:49:03 +02:00
2 changed files with 3 additions and 15 deletions

View File

@@ -88,7 +88,8 @@ namespace PluginManager
LogEvent?.Invoke(message);
}
public static void Write(char c)
public static void Write<T>(T c)
{
if (!isInitialized) throw new Exception("Logger is not initialized");
LogEvent?.Invoke($"{c}");