Base: Interpreter - Mark Exception reporting and stack as intended for developers

This commit is contained in:
Abdullah Tahiri
2023-05-21 17:25:57 +02:00
committed by abdullahtahiriyo
parent 5e5d863968
commit 1b59b75482

View File

@@ -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());
}
}