11

デバッグモードでC++コード(ライブラリを使用)を実行すると、ウィンドウにファーストチャンス例外に関するCGAL多くのデバッグメッセージが表示されます。私は、最初のチャンスの例外が何であるかを知っています。OutputCGAL::Uncertain_conversion_exception

では、この1種類の例外( )のデバッグメッセージの表示をオフにするにはどうすればよいCGAL::Uncertain_conversion_exceptionですか?

デバッグメッセージをできるだけ詳しく説明するのが好きですが、特定の例外が何であるかを理解し、それを処理したら、それをなくしたいと思います。たとえば、この場合、CGALの例外はおそらくナイーブ(かつ有益)であり、懸念の原因ではありません。オフにしたいのですが、それでも他の(新しい)最初のチャンスの例外に目を光らせておくことができます。これはVisualStudio2008で可能ですか?私はあまりにも多くを求めていますか?

4

2 に答える 2

10

I don't think there is a way.

You can right-click into the output window and disable all exception messages, but it doesn't come with anymore of a filtering ability.

That said, if you're desperate, you can save the output, filter it, and, using a simple tool added to the Tools menu, dump it back into the output window (where it appears under your tool's title instead of "Debug"). I've done this before, but usually this is too much hassle for too little gains.

于 2009-11-03T07:59:54.570 に答える
-4

VS2008を使用してそれができるとは思いません。ただし、DbgView.exeを使用して、表示する文字列を含める/除外するようにフィルターを設定できます。

于 2009-03-19T08:29:13.437 に答える