Show / Hide Table of Contents

Interface ILogger

Inherited Members
ILogHandler.LogFormat(LogType, Object, String, Object[])
ILogHandler.LogException(Exception, Object)
Namespace: UnityEngine
Assembly: UnityEngine.dll
Syntax
public interface ILogger : ILogHandler

Properties

| Improve this Doc View Source

filterLogType

Declaration
LogType filterLogType { get; set; }
Property Value
Type Description
LogType
| Improve this Doc View Source

logEnabled

Declaration
bool logEnabled { get; set; }
Property Value
Type Description
Boolean
| Improve this Doc View Source

logHandler

Declaration
ILogHandler logHandler { get; set; }
Property Value
Type Description
ILogHandler

Methods

| Improve this Doc View Source

IsLogTypeAllowed(LogType)

Declaration
bool IsLogTypeAllowed(LogType logType)
Parameters
Type Name Description
LogType logType
Returns
Type Description
Boolean
| Improve this Doc View Source

Log(Object)

Declaration
void Log(object message)
Parameters
Type Name Description
Object message
| Improve this Doc View Source

Log(String, Object)

Declaration
void Log(string tag, object message)
Parameters
Type Name Description
String tag
Object message
| Improve this Doc View Source

Log(String, Object, Object)

Declaration
void Log(string tag, object message, Object context)
Parameters
Type Name Description
String tag
Object message
Object context
| Improve this Doc View Source

Log(LogType, Object)

Declaration
void Log(LogType logType, object message)
Parameters
Type Name Description
LogType logType
Object message
| Improve this Doc View Source

Log(LogType, Object, Object)

Declaration
void Log(LogType logType, object message, Object context)
Parameters
Type Name Description
LogType logType
Object message
Object context
| Improve this Doc View Source

Log(LogType, String, Object)

Declaration
void Log(LogType logType, string tag, object message)
Parameters
Type Name Description
LogType logType
String tag
Object message
| Improve this Doc View Source

Log(LogType, String, Object, Object)

Declaration
void Log(LogType logType, string tag, object message, Object context)
Parameters
Type Name Description
LogType logType
String tag
Object message
Object context
| Improve this Doc View Source

LogError(String, Object)

Declaration
void LogError(string tag, object message)
Parameters
Type Name Description
String tag
Object message
| Improve this Doc View Source

LogError(String, Object, Object)

Declaration
void LogError(string tag, object message, Object context)
Parameters
Type Name Description
String tag
Object message
Object context
| Improve this Doc View Source

LogException(Exception)

Declaration
void LogException(Exception exception)
Parameters
Type Name Description
Exception exception
| Improve this Doc View Source

LogFormat(LogType, String, Object[])

Declaration
void LogFormat(LogType logType, string format, params object[] args)
Parameters
Type Name Description
LogType logType
String format
Object[] args
| Improve this Doc View Source

LogWarning(String, Object)

Declaration
void LogWarning(string tag, object message)
Parameters
Type Name Description
String tag
Object message
| Improve this Doc View Source

LogWarning(String, Object, Object)

Declaration
void LogWarning(string tag, object message, Object context)
Parameters
Type Name Description
String tag
Object message
Object context

Extension Methods

MustExtensions.MustBeEqual<T>(T, T)
MustExtensions.MustBeEqual<T>(T, T, String)
MustExtensions.MustNotBeEqual<T>(T, T)
MustExtensions.MustNotBeEqual<T>(T, T, String)
MustExtensions.MustBeNull<T>(T)
MustExtensions.MustBeNull<T>(T, String)
MustExtensions.MustNotBeNull<T>(T)
MustExtensions.MustNotBeNull<T>(T, String)
  • Improve this Doc
  • View Source
Back to top Generated by DocFX