English 中文(简体)
登录多层应用程序
原标题:Logging in Multi-Tier Application

我在一个企业项目中工作,我试图使用nLog实现良好的日志记录,我想知道是否有任何一本书谈论日志记录的最佳实践,

由于我不想在没有标准模式的情况下开始记录所有事情,如果我能从其他人停止的地方开始,那将非常有帮助,

或者,如果有人能为我提供使用nLog的最佳实践信息。。。。

提前感谢。。。

最佳回答

认真思考你认为需要记录的所有内容。根据我的经验,我发现大多数开发人员记录的大多数行实际上都是错误,应该作为异常抛出。这通常会导致日志数据库(或邮箱)泛滥,没有人查看,也没有人信任。在我编写的应用程序中,我几乎从不记录(和捕获)任何内容(当然,除了记录出现在调用堆栈顶部的异常)。

剩下的几行日志应该写一条清晰(详细)的消息,清楚地指示发生了什么。当你这样做时,你几乎不需要为每种类型指定一个记录器,这是大多数日志框架所需要的功能。每种类型的记录器用于防止记录来自要处理的系统的某些类型或部分的事件。然而,当你遵循“日志少,抛出频繁”的模式时,你会发现你不需要每个类型都有一个记录器。

问题回答

这里有一个关于SO的问题,它试图记录一些日志记录的最佳实践:记录最佳实践

一些常见主题:

可能最常见的日志记录做法是根据该类型检索每种类型的记录器,如下所示:

class MyClass
{ 
  private static readonly Logger logger = LogManager.GetCurrentClassLogger();

  public void DoSomething()
  {
    logger.Info("Doing something");
  }
}

这使您在配置和控制日志记录方面具有很大的灵活性。如果你的名称空间是逻辑布局的,你可以很容易地打开或关闭日志记录,或者将其设置为给定类、名称空间、名称空间的一部分等的特定级别。

如果包装记录器,请小心并正确包装。请参阅这篇文章是关于日志抽象的一些(不一定是决定性的)讨论。包装时需要考虑的一些重要问题:你想维护调用站点信息吗?考虑制作一个单一的静态记录器,它不能让你为代码的不同区域以不同的方式配置日志记录。

希望这能有所帮助。





相关问题
Anyone feel like passing it forward?

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. ...

NSArray s, Primitive types and Boxing Oh My!

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 ...

C# Marshal / Pinvoke CBitmap?

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 ...

How to Use Ghostscript DLL to convert PDF to PDF/A

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, ...

Linqy no matchy

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. ...

热门标签