Distracting Exception output in QtCreator when debugging Windows application -


i using qtcreator 4.1rc1 under windows msvc tool chain. debugger cdb windows 8.1 sdk. had same issue older versions of qtcreator.

when debug application, there many messages output (and issues) pane in form

exception @ 0x773596c2, code: 0xe06d7363: c++ exception, flags=0x1 (execution cannot continued) (first chance) in winscard!scardtransmit

i understand, expected under windows , exceptions not problem. pollute output , issues pane , render them useless.

so tried rid of messages. but failed after hours trying. tried following:

  • use check box 'ignore first chance access violation' under tools->options->debugger->cdb
  • specifying command line arguments cdb.exe: -xi
  • create script file cdb.exe used @ startup avoid warnings. script contained commands 'sxi 8010000a; sxi 0000071a; sxi e06d7363'. tried placing script in several directories , specifying command line options -cf or -cfr.

when run cdb.exe command line using startup script, works! no exceptions printed console. when start qtcreator, there again. assume, qtcreator using own startup scripts , overwrite ones specified.

has succeeded in hiding exception outputs under qtcreator cdb?


Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -