public class NullLogger : ILogger
Represents a NullLogger which does not do any logging.
Implements
ILoggerNamespace
Google.Apis.LoggingAssembly
Google.Apis.Core.dll
Properties
IsDebugEnabled
public bool IsDebugEnabled { get; }
Gets an indication whether debug output is logged or not.
Methods
Debug(String, Object[])
public void Debug(string message, params object[] formatArgs)
Logs a debug message.
Error(Exception, String, Object[])
public void Error(Exception exception, string message, params object[] formatArgs)
Logs an error message resulting from an exception.
Error(String, Object[])
public void Error(string message, params object[] formatArgs)
Logs an error message.
ForType(Type)
public
ILogger
ForType
(
Type
type
)
Returns a logger which will be associated with the specified type.
ForType<T>()
public ILogger ForType<T>()
Returns a logger which will be associated with the specified type.
Type Parameter
Name
Description
T
Info(String, Object[])
public void Info(string message, params object[] formatArgs)
Logs an info message.
Warning(String, Object[])
public void Warning(string message, params object[] formatArgs)
Logs a warning.

