From 10dc572b43bd7a5766eeab2343fc737d182f4a4a Mon Sep 17 00:00:00 2001 From: JustArchi Date: Thu, 31 Jan 2019 04:54:35 +0100 Subject: [PATCH] Misc --- ArchiSteamFarm.CustomPlugins.ExamplePlugin/ExamplePlugin.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArchiSteamFarm.CustomPlugins.ExamplePlugin/ExamplePlugin.cs b/ArchiSteamFarm.CustomPlugins.ExamplePlugin/ExamplePlugin.cs index 786882255..dd53a90f1 100644 --- a/ArchiSteamFarm.CustomPlugins.ExamplePlugin/ExamplePlugin.cs +++ b/ArchiSteamFarm.CustomPlugins.ExamplePlugin/ExamplePlugin.cs @@ -162,7 +162,7 @@ namespace ArchiSteamFarm.CustomPlugins.ExamplePlugin { // At this point you can access core ASF's functionality, such as logging or a web browser // Once all plugins execute their OnLoaded() methods, OnASFInit() will be called next public void OnLoaded() { - ASF.ArchiLogger.LogGenericInfo("Hey! Thanks for checking if our example plugin works fine, this is a confirmation that indeed OnLoaded() method was called!"); + ASF.ArchiLogger.LogGenericInfo("Hey! Thanks for checking if our example plugin works fine, this is a confirmation that indeed " + nameof(OnLoaded) + "() method was called!"); ASF.ArchiLogger.LogGenericInfo("Good luck in whatever you're doing!"); } }