1

例如,我有 function doSomething(string a, string b, string c)。我想记录函数的执行。我想做这样的事情:

Logger.Debug("Method doSomething executed", a, b, c)

避免在消息中写入参数,因为字符串可能很长。此功能类似于.Enrich.WithProperty("PropertyName", Value). 但我不能在 Logger 构造函数中执行此操作。记录写入SEQ.

4

1 回答 1

1

ForContext()可以这样做:

var enriched = Log.ForContext("A", a)
                  .ForContext("B", b)
                  .ForContext("C", c);

enriched.Debug("Method doSomething executed");

通过记录的所有事件enriched都将具有属性ABC附加。

于 2015-11-25T19:43:38.310 回答