Prevent crash on entity-script-server for due to logging interface.

This commit is contained in:
Kalila L 2020-10-25 18:36:20 -04:00
parent 22aa9f2065
commit 50067e3361

View file

@ -130,6 +130,11 @@ static QScriptValue debugPrint(QScriptContext* context, QScriptEngine* engine) {
// This message was sent by one of our script engines, let's try to see if we can find the source.
// Note that the first entry in the backtrace should be "print" and is somewhat useless to us
AbstractLoggerInterface* loggerInterface = AbstractLoggerInterface::get();
if (!loggerInterface) {
qCDebug(scriptengine_script, "%s", qUtf8Printable(message));
return QScriptValue();
}
if (loggerInterface->showSourceDebugging()) {
QScriptContext* userContext = context;
while (userContext && QScriptContextInfo(userContext).functionType() == QScriptContextInfo::NativeFunction) {