我在一个企业项目中工作,我试图使用nLog实现良好的日志记录,我想知道是否有任何一本书谈论日志记录的最佳实践,
由于我不想在没有标准模式的情况下开始记录所有事情,如果我能从其他人停止的地方开始,那将非常有帮助,
或者,如果有人能为我提供使用nLog的最佳实践信息。。。。
提前感谢。。。
我在一个企业项目中工作,我试图使用nLog实现良好的日志记录,我想知道是否有任何一本书谈论日志记录的最佳实践,
由于我不想在没有标准模式的情况下开始记录所有事情,如果我能从其他人停止的地方开始,那将非常有帮助,
或者,如果有人能为我提供使用nLog的最佳实践信息。。。。
提前感谢。。。
认真思考你认为需要记录的所有内容。根据我的经验,我发现大多数开发人员记录的大多数行实际上都是错误,应该作为异常抛出。这通常会导致日志数据库(或邮箱)泛滥,没有人查看,也没有人信任。在我编写的应用程序中,我几乎从不记录(和捕获)任何内容(当然,除了记录出现在调用堆栈顶部的异常)。
剩下的几行日志应该写一条清晰(详细)的消息,清楚地指示发生了什么。当你这样做时,你几乎不需要为每种类型指定一个记录器,这是大多数日志框架所需要的功能。每种类型的记录器用于防止记录来自要处理的系统的某些类型或部分的事件。然而,当你遵循“日志少,抛出频繁”的模式时,你会发现你不需要每个类型都有一个记录器。
这里有一个关于SO的问题,它试图记录一些日志记录的最佳实践:记录最佳实践
一些常见主题:
可能最常见的日志记录做法是根据该类型检索每种类型的记录器,如下所示:
class MyClass
{
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
public void DoSomething()
{
logger.Info("Doing something");
}
}
这使您在配置和控制日志记录方面具有很大的灵活性。如果你的名称空间是逻辑布局的,你可以很容易地打开或关闭日志记录,或者将其设置为给定类、名称空间、名称空间的一部分等的特定级别。
如果包装记录器,请小心并正确包装。请参阅这篇文章是关于日志抽象的一些(不一定是决定性的)讨论。包装时需要考虑的一些重要问题:你想维护调用站点信息吗?考虑制作一个单一的静态记录器,它不能让你为代码的不同区域以不同的方式配置日志记录。
希望这能有所帮助。
What is the use of default keyword in C#? Is it introduced in C# 3.0 ?
I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...
I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...
I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...
I have two EF entities. One has a property called HouseNumber. The other has two properties, one called StartHouseNumber and one called EndHouseNumber. I want to create a many to many association ...
How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...
Since I cannot order my dictionary, what is the best way of going about taking key value pairs and also maintaing an index?
Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...