From 1b59b75482c629eac4ef37688e02ade14114928f Mon Sep 17 00:00:00 2001 From: Abdullah Tahiri Date: Sun, 21 May 2023 17:25:57 +0200 Subject: [PATCH] Base: Interpreter - Mark Exception reporting and stack as intended for developers --- src/Base/Interpreter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Base/Interpreter.cpp b/src/Base/Interpreter.cpp index 074e86fef7..37106ce4d0 100644 --- a/src/Base/Interpreter.cpp +++ b/src/Base/Interpreter.cpp @@ -131,7 +131,7 @@ void PyException::ReportException () const { if (!_isReported) { _isReported = true; - Base::Console().Error("%s%s: %s\n", + Base::Console().DeveloperError("%s%s: %s\n", _stackTrace.c_str(), _errorType.c_str(), what()); } }