How can I make QT Creator stop logging warning exceptions?

1

I'm using QT Creator and the exception warnings really sucks, because they're logging everywhere.

Example in compiler output: Exception at 0x7ffad5e54008, code: 0xe06d7363: C++ exception, flags=0x1 (execution cannot be continued) (first chance) at

At Issues:

At Issues, the annoying warning

How can I disable this behavior?

c++
qt
suppress-warnings
asked on Stack Overflow Apr 19, 2018 by Ráfagan

1 Answer

1

For Windows: Go to Tools -> Options -> CDB -> Add Exceptions to Issues View -> uncheck "First chance exceptions".

Contrary to what I expected it does two things: remove the exceptions from the issues view, and stop them from appearing in the application output tab.

enter image description here

answered on Stack Overflow Nov 2, 2019 by benk

User contributions licensed under CC BY-SA 3.0