From 2deaa666f3344068e66bcc83ac9e6b75bafb9ef9 Mon Sep 17 00:00:00 2001 From: Kyle Sanderson Date: Mon, 3 Oct 2016 08:29:51 -0700 Subject: [PATCH] Fix erroneous () in DebugReport:: printouts. (#517) --- core/logic/DebugReporter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/logic/DebugReporter.cpp b/core/logic/DebugReporter.cpp index e1f05a62..93fd5c41 100644 --- a/core/logic/DebugReporter.cpp +++ b/core/logic/DebugReporter.cpp @@ -185,7 +185,7 @@ void DebugReport::ReportError(const IErrorReport &report, IFrameIterator &iter) if (blame) { - g_Logger.LogError("[SM] Blaming: %s()", blame); + g_Logger.LogError("[SM] Blaming: %s", blame); } if (!iter.Done()) @@ -211,7 +211,7 @@ void DebugReport::ReportError(const IErrorReport &report, IFrameIterator &iter) { file = ""; } - g_Logger.LogError("[SM] [%d] Line %d, %s::%s()", + g_Logger.LogError("[SM] [%d] Line %d, %s::%s", index, iter.LineNumber(), file,