Dynamics AX / AXAPTA .Net Business Connector - 如何清除旧异常
我正在编写一个小工具来处理 AX 交易,并发现每次出现错误时,我的异常输出都会增加。
看来每次 XppException 发生时,所有先前的异常也会被输出。正如您可以想象的那样,这并不漂亮并且可能会引起混乱。
在处理每个异常时,是否有某种方法可以清除所有构建的异常消息?
另外,我收到了大量
ClrBridgeLoader:致命错误:无法加载 Microsoft.Dynamics.ClrBridge.dll。
错误消息。如何清除这些呢?
I'm writing a little tool to process AX transactions and have discovered that with each error, my exception output grows.
It appears that each time an XppException happens all previous exceptions are output as well. As you can imagine, this is not pretty and can cause confusion.
Is there some way to clear all the built-up exception messages when handling each exception?
Also, I am getting a large number of
ClrBridgeLoader : fatal error : Microsoft.Dynamics.ClrBridge.dll cannot be loaded.
error messages. How to clear these up as well?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我自己想出了这个:
Figured this out on my own: