instead of removing logs, just make them Debug.Log so they only show up in owml debug mode

This commit is contained in:
JohnCorby 2022-02-07 13:44:19 -08:00
parent 1d6ecd93be
commit 9408eab753

View File

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