Windpows中异常日志存储在哪里?
嗨,
我们有一个运行 och Windows 的 WinForm 应用程序。该应用程序在异常客户端上提供扩展日志记录。到目前为止,我们已将此 XML 文件放置在应用程序的根目录中,但并不总是存在写入此文件的正确权限。
这有什么最佳实践吗? ExceptionLog应该放在哪里以及我们如何处理权限?
也许日志应该放置在用户文件夹中 (C:\Users\UserX)
BestRegards
Hi,
We have a WinForm application running och Windows. This application offers extended logging on the client of Exceptions. Until now we have placed this XML file in the root off the application but Its not always that the correct permissions exists to write in this file.
Is there any best practice for this? Where should the ExceptionLog be placed and how do we handle the permissions?
Maby the log should be placed in a user folder (C:\Users\UserX)
BestRegards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议您使用一些库来记录异常。例如 log4net 或 nlog。它们允许您更改日志的写入方式。 Log4net 有大量不同的附加程序,可以记录到数据库、文本或 xml 文件、事件日志,甚至发送电子邮件。根据客户端计算机,可以配置 Log4net,无需重新编译应用程序。
I recommend you to use some library for exception logging. For exapmle log4net or nlog. They allow you to change the way logs are written. Log4net has big set of different appenders that can log to database, text or xml files, event log and even send email. Log4net could be configured without recompiling your application, according clients machine.