From 1be956004573aa90dde3d5eeb97a954071e3ad90 Mon Sep 17 00:00:00 2001 From: FreezeDriedMangoes Date: Tue, 5 Jul 2022 17:52:17 -0400 Subject: [PATCH] removed unneeded param --- NewHorizons/Utility/Logger.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NewHorizons/Utility/Logger.cs b/NewHorizons/Utility/Logger.cs index e204107b..4fb24358 100644 --- a/NewHorizons/Utility/Logger.cs +++ b/NewHorizons/Utility/Logger.cs @@ -57,7 +57,7 @@ namespace NewHorizons.Utility { Log(text, LogType.Error); } - public static void LogWarning(string text, bool isVerbose=false) + public static void LogWarning(string text) { Log(text, LogType.Warning); }