Ráfagan
Ráfagan

Reputation: 2255

How can I make QT Creator stop logging warning exceptions?

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?

Upvotes: 3

Views: 1142

Answers (1)

benk
benk

Reputation: 446

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

Upvotes: 2

Related Questions