Click or drag to resize

ConfigurationItemFactoryParseMessageTemplates Property

Perform message template parsing and formatting of LogEvent messages (True = Always, False = Never, Null = Auto Detect)

Namespace:  NLog.Config
Assembly:  NLog (in NLog.dll) Version: 6.0.0+cfb73701cda54e2410b006f649f072e90daef707
Syntax
public bool? ParseMessageTemplates { get; set; }

Property Value

Type: NullableBoolean
Remarks
- (Auto Detect) : NLog-parser checks Message for positional parameters, and will then fallback to string.Format-rendering. - : Always performs the parsing of Message and rendering of FormattedMessage using the NLog-parser (Allows custom formatting with IValueFormatter) - : Always performs parsing and rendering using string.Format (Fastest if not using structured logging)
See Also