您好我正在开发一个 Windows 8 c#/xaml Metro 应用程序。
我想在我的应用程序中实现错误日志记录。我想以更好的方式处理错误日志。
1)如何记录错误信息(以便开发者纠正错误)
2)是否有任何 3rd 方工具/免费库用于在 Metro 应用程序中记录错误。
3)有哪些可用于错误记录的各种替代方法?
4)错误记录的最佳做法是什么?
请帮帮我。
你的回答对我很有帮助。
提前致谢。
您好我正在开发一个 Windows 8 c#/xaml Metro 应用程序。
我想在我的应用程序中实现错误日志记录。我想以更好的方式处理错误日志。
1)如何记录错误信息(以便开发者纠正错误)
2)是否有任何 3rd 方工具/免费库用于在 Metro 应用程序中记录错误。
3)有哪些可用于错误记录的各种替代方法?
4)错误记录的最佳做法是什么?
请帮帮我。
你的回答对我很有帮助。
提前致谢。
对于 Windows 8.1,您可以使用 LoggingSession 和 LogginChannel 的新 Windows.Foundation.Diagnostics 功能。
http://code.msdn.microsoft.com/windowsapps/LoggingSession-Sample-ccd52336 请参阅构建会话:http ://channel9.msdn.com/Events/Build/2013/3-136
var channel = new LoggingChannel ("ChannelName");
var session = new LoggingSession("Session Name");
session.AddLoggingChannel(channel, LoggingLevel.Warning);
channel.LogMessage("Message to log", LoggingLevel.Error);
channel.LogValuePair("Count", 42, LoggingLevel.Error);
//when error detected, save the log session to disk
var logFile = await session.SaveToFileAsync(ApplicationData.Current.LocalFolder, "CrashLog");