diff --git a/ArchiSteamFarm.CustomPlugins.ExamplePlugin/ExamplePlugin.cs b/ArchiSteamFarm.CustomPlugins.ExamplePlugin/ExamplePlugin.cs index ab2422c75..3f5090abf 100644 --- a/ArchiSteamFarm.CustomPlugins.ExamplePlugin/ExamplePlugin.cs +++ b/ArchiSteamFarm.CustomPlugins.ExamplePlugin/ExamplePlugin.cs @@ -155,6 +155,9 @@ namespace ArchiSteamFarm.CustomPlugins.ExamplePlugin { // If you do not have any global structures to initialize, you can leave this function empty // 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() { } + 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("Good luck in whatever you're doing!"); + } } }