From 94dfeb7fd5c8fe05e22210d948f7b1e343fb6fa4 Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 17 Oct 2022 19:16:42 +0300 Subject: [PATCH] Do not log the debugger output --- Core/Debugger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Debugger.cpp b/Core/Debugger.cpp index ae128fc..82c8a65 100644 --- a/Core/Debugger.cpp +++ b/Core/Debugger.cpp @@ -57,7 +57,7 @@ namespace SysDbg void WriteLine(DebugLevel Level, const char *File, int Line, const char *Function, const char *Format, ...) { - SMARTLOCK(DebuggerLock); + // SMARTLOCK(DebuggerLock); WritePrefix(Level, File, Line, Function); va_list args; va_start(args, Format);