-
Notifications
You must be signed in to change notification settings - Fork 0
5d152bf1 74f6 d411 032e 2449fc8ca180
Axel Kesseler edited this page Mar 1, 2023
·
14 revisions
This method writes the message into the logging target using provided logging level.
Namespace: Plexdata.LogWriter.Logging
Assembly: Plexdata.LogWriter.Persistent (in Plexdata.LogWriter.Persistent.dll) Version: 1.0.7.1
C#
public void Write(
LogLevel level,
string message,
params (string , Object )[] details
)
- level
- Type: Plexdata.LogWriter.Definitions.LogLevel
The logging level to be used to tag the written logging data. - message
- Type: System.String
The message to be written. - details
- Type: System.ValueTuple(String, Object)[]
An optional list of label-value-pair combinations containing additional information.
ILogger.Write(LogLevel, String, ValueTuple(String, Object)[])
This method performs the actual writing of logging data into the logging target using a particular logging level. Be aware, nothing will happen if message is null
, empty or consists only of whitespaces.
PersistentLogger Class
Write Overload
Plexdata.LogWriter.Logging Namespace