ClassLogging
Exposes a Logger property, which allows projects that use this library to set a custom logger
Definition
Namespace:Telerik.NetworkConnections
Assembly:Telerik.NetworkConnections.dll
Syntax:
public static class Logging
Inheritance: objectLogging
Inherited Members
Methods
InitLogger(ILogger, Func<string, string>)
Initializes the static logger instance
LogCritical(string)
Log a critical error message
Declaration
public static void LogCritical(string log)
Parameters
log
The message string. It will be sanitized if needed.
LogDebug(string)
Log a debug message
Declaration
public static void LogDebug(string log)
Parameters
log
The message string. It will be sanitized if needed.
LogError(string)
Log an error message
Declaration
public static void LogError(string log)
Parameters
log
The message string. It will be sanitized if needed.
LogInformation(string)
Log an informational message
Declaration
public static void LogInformation(string log)
Parameters
log
The message string. It will be sanitized if needed.
LogTrace(string)
Log a trace debug message
Declaration
public static void LogTrace(string log)
Parameters
log
The message string. It will be sanitized if needed.
LogWarning(string)
Log a warning message
Declaration
public static void LogWarning(string log)
Parameters
log
The message string. It will be sanitized if needed.