From 371de1ec4079b5d3c2226770372ba409f3881686 Mon Sep 17 00:00:00 2001 From: JustArchi Date: Thu, 17 Jan 2019 18:50:14 +0100 Subject: [PATCH] Misc --- ArchiSteamFarm.CustomPlugins.ExamplePlugin/ExamplePlugin.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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!"); + } } }