Class Logger
Assembly: UnityEngine.dll
Syntax
public class Logger : ILogger, ILogHandler
Constructors
|
Improve this Doc
View Source
Logger(ILogHandler)
Declaration
public Logger(ILogHandler logHandler)
Parameters
Properties
|
Improve this Doc
View Source
filterLogType
Declaration
public LogType filterLogType { get; set; }
Property Value
|
Improve this Doc
View Source
logEnabled
Declaration
public bool logEnabled { get; set; }
Property Value
|
Improve this Doc
View Source
logHandler
Declaration
public ILogHandler logHandler { get; set; }
Property Value
Methods
|
Improve this Doc
View Source
IsLogTypeAllowed(LogType)
Declaration
public bool IsLogTypeAllowed(LogType logType)
Parameters
Type |
Name |
Description |
LogType |
logType |
|
Returns
|
Improve this Doc
View Source
Log(Object)
Declaration
public void Log(object message)
Parameters
Type |
Name |
Description |
Object |
message |
|
|
Improve this Doc
View Source
Log(String, Object)
Declaration
public void Log(string tag, object message)
Parameters
|
Improve this Doc
View Source
Log(String, Object, Object)
Declaration
public void Log(string tag, object message, Object context)
Parameters
|
Improve this Doc
View Source
Log(LogType, Object)
Declaration
public void Log(LogType logType, object message)
Parameters
|
Improve this Doc
View Source
Log(LogType, Object, Object)
Declaration
public void Log(LogType logType, object message, Object context)
Parameters
|
Improve this Doc
View Source
Log(LogType, String, Object)
Declaration
public void Log(LogType logType, string tag, object message)
Parameters
|
Improve this Doc
View Source
Log(LogType, String, Object, Object)
Declaration
public void Log(LogType logType, string tag, object message, Object context)
Parameters
|
Improve this Doc
View Source
LogError(String, Object)
Declaration
public void LogError(string tag, object message)
Parameters
|
Improve this Doc
View Source
LogError(String, Object, Object)
Declaration
public void LogError(string tag, object message, Object context)
Parameters
|
Improve this Doc
View Source
LogException(Exception)
Declaration
public void LogException(Exception exception)
Parameters
|
Improve this Doc
View Source
LogException(Exception, Object)
Declaration
public void LogException(Exception exception, Object context)
Parameters
|
Improve this Doc
View Source
Declaration
public void LogFormat(LogType logType, string format, params object[] args)
Parameters
|
Improve this Doc
View Source
Declaration
public void LogFormat(LogType logType, Object context, string format, params object[] args)
Parameters
|
Improve this Doc
View Source
LogWarning(String, Object)
Declaration
public void LogWarning(string tag, object message)
Parameters
|
Improve this Doc
View Source
LogWarning(String, Object, Object)
Declaration
public void LogWarning(string tag, object message, Object context)
Parameters
Implements
Extension Methods