IAPILog
Logging wrapper of Relativity.Logging
Adds the full name of Type T to the log information.
Adds the full name of the source's Type to the log information.
Adds the value object with the propertyName to the log information. DestructureObjects false will T
Adds the obj data with the propertyName to the log information of all logs that happen within a using statement.
In this C# example any loggers within the MethodThatLogs() method will have the PushProperty "User".
using (var pushLogger = _logger.LogContextPushProperty("User", user))
{
MethodThatLogs();
}
Debug level logging.
Debug level logging with an exception.
Error level logging.
Error level logging with an exception.
Fatal level logging.
Fatal level logging with an exception.
Information level logging.
Information level logging with an exception.
Verbose level logging.
Verbose level logging with an exception.
Warning level logging.
Warning level logging with an exception.