From b19dd60e528635e37363f48096c250c67b1df7a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20L=C3=BCbe=C3=9F?= Date: Thu, 20 May 2021 12:42:17 +0200 Subject: [PATCH] Debuglogger no longer asserts a Debugger to be present in release builds --- GlitchLog/src/DebugLogger.bf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GlitchLog/src/DebugLogger.bf b/GlitchLog/src/DebugLogger.bf index b2c8d6a..0b14938 100644 --- a/GlitchLog/src/DebugLogger.bf +++ b/GlitchLog/src/DebugLogger.bf @@ -50,7 +50,7 @@ namespace GlitchLog public this() { - Runtime.Assert(Debug.IsDebuggerPresent, "The DebugLogger requires a debugger to be present."); + Debug.Assert(Debug.IsDebuggerPresent, "The DebugLogger requires a debugger to be present."); } #if GL_NOLOG || GL_NOTRACE