You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 21, 2024. It is now read-only.
Logger.Error($"Could not register event handler \"{eventHandler.Name}\" as the argument \"{eventType}{eventHandlerArguments[0].Name}\" does not extend \"{nameof(Event)}\"!");
52
+
Logger.Error($"Could not register event handler \"{eventHandler.FullDescription()}\" as the argument \"{eventType}{eventHandlerArguments[0].Name}\" does not extend \"{nameof(Event)}\"!");
53
53
}
54
54
}
55
55
else
56
56
{
57
-
Logger.Error($"Could not register event handler \"{eventHandler.Name}\" as it has {eventHandlerArguments.Length} arguments, not 1!");
57
+
Logger.Error($"Could not register event handler \"{eventHandler.FullDescription()}\" as it has {eventHandlerArguments.Length} arguments, not 1!");
58
58
}
59
59
}
60
60
else
61
61
{
62
-
Logger.Error($"Could not register event handler \"{eventHandler.Name}\" as it is not static!");
62
+
Logger.Error($"Could not register event handler \"{eventHandler.FullDescription()}\" as it is not static!");
63
63
}
64
64
}
65
65
}
@@ -119,7 +119,13 @@ public static void RunHandlers(Event e)
0 commit comments