We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9215e9 commit 4a2446dCopy full SHA for 4a2446d
1 file changed
gui/threadresult.cpp
@@ -47,6 +47,10 @@ void ThreadResult::reportErr(const ErrorLogger::ErrorMessage &msg)
47
{
48
QMutexLocker locker(&mutex);
49
50
+ // GUI doesn't know how to properly handle debug messages so lets ignore them.
51
+ if (msg._severity == "debug")
52
+ return;
53
+
54
QList<unsigned int> lines;
55
QStringList files;
56
@@ -64,9 +68,6 @@ void ThreadResult::reportErr(const ErrorLogger::ErrorMessage &msg)
64
68
files,
65
69
lines,
66
70
QString(msg._id.c_str()));
67
-
71
}
72
73
QString ThreadResult::GetNextFile()
0 commit comments