3

您好我正在开发一个 Windows 8 c#/xaml Metro 应用程序。

我想在我的应用程序中实现错误日志记录。我想以更好的方式处理错误日志。

1)如何记录错误信息(以便开发者纠正错误)

2)是否有任何 3rd 方工具/免费库用于在 Metro 应用程序中记录错误。

3)有哪些可用于错误记录的各种替代方法?

4)错误记录的最佳做法是什么?

请帮帮我。

你的回答对我很有帮助。

提前致谢。

4

2 回答 2

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");
于 2014-04-30T09:11:02.613 回答
2

Microsoft 提供了一个日志记录示例,这可能会让您入门。

这篇博文中,作者列举了一些在 Windows8 应用商店应用程序中设置日志记录的起点,以及自制的解决方案。

于 2013-03-22T12:33:41.010 回答