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