This commit is contained in:
JustArchi
2019-01-31 04:54:35 +01:00
parent 95356af9d3
commit 10dc572b43

View File

@@ -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!");
}
}