Debuglogger no longer asserts a Debugger to be present in release builds

This commit is contained in:
Simon Lübeß
2021-05-20 12:42:17 +02:00
parent 2f281f13fd
commit b19dd60e52
+1 -1
View File
@@ -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