From 9408eab75314fe3f4fd4f2bd57cdfb1dcf1d84fe Mon Sep 17 00:00:00 2001 From: JohnCorby Date: Mon, 7 Feb 2022 13:44:19 -0800 Subject: [PATCH] instead of removing logs, just make them Debug.Log so they only show up in owml debug mode --- EpicRerouter/ModSide/Interop.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EpicRerouter/ModSide/Interop.cs b/EpicRerouter/ModSide/Interop.cs index bcfe580e..c2eabbbc 100644 --- a/EpicRerouter/ModSide/Interop.cs +++ b/EpicRerouter/ModSide/Interop.cs @@ -64,6 +64,6 @@ namespace EpicRerouter.ModSide Log($"error:\n{process.StandardError.ReadToEnd()}"); } - public static void Log(object msg) => Debug.LogError($"[EpicRerouter] {msg}"); + public static void Log(object msg) => Debug.Log($"[EpicRerouter] {msg}"); } }