| LoggingConfigurationAddRuleForOneLevel Method (LogLevel, Target, String, Boolean) |
Add a rule for one loglevel.
Namespace:
NLog.Config
Assembly:
NLog (in NLog.dll) Version: 5.3.4+73d83d3161d31288ca5c554cc50d27b6bed5f28b
Syntax public void AddRuleForOneLevel(
LogLevel level,
Target target,
string loggerNamePattern,
bool final
)
Public Sub AddRuleForOneLevel (
level As LogLevel,
target As Target,
loggerNamePattern As String,
final As Boolean
)
Dim instance As LoggingConfiguration
Dim level As LogLevel
Dim target As Target
Dim loggerNamePattern As String
Dim final As Boolean
instance.AddRuleForOneLevel(level, target,
loggerNamePattern, final)
member AddRuleForOneLevel :
level : LogLevel *
target : Target *
loggerNamePattern : string *
final : bool -> unit
Parameters
- level
- Type: NLogLogLevel
log level needed to trigger this rule. - target
- Type: NLog.TargetsTarget
Target to be written to when the rule matches. - loggerNamePattern
- Type: SystemString
Logger name pattern. It may include the '*' wildcard at the beginning, at the end or at both ends. - final
- Type: SystemBoolean
Gets or sets a value indicating whether to quit processing any further rule when this one matches.
See Also