diff options
Diffstat (limited to 'StardewInjector/StardewInjector.cs')
-rw-r--r-- | StardewInjector/StardewInjector.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/StardewInjector/StardewInjector.cs b/StardewInjector/StardewInjector.cs index 055a79f9..b67a8bc9 100644 --- a/StardewInjector/StardewInjector.cs +++ b/StardewInjector/StardewInjector.cs @@ -39,16 +39,16 @@ namespace StardewInjector hooker.ApplyHooks(); hooker.Finalize(); - Program.LogInfo("INJECTOR ENTERED"); + Log.Verbose("INJECTOR ENTERED"); } else if (objects.Length > 0 && objects[0].AsBool() == true) { - Program.LogInfo("INJECTOR LAUNCHING"); + Log.Verbose("INJECTOR LAUNCHING"); hooker.Run(); } else { - Program.LogError("INVALID PARAMETERS FOR INJECTOR"); + Log.Verbose("INVALID PARAMETERS FOR INJECTOR"); } } } |