Log
Logs message to the Unity Console using default logger.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Method
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
Log(LogType, Object)
Logs message to the Unity Console using default logger.
void Log(LogType logType, object message)
Parameters
Remarks
Additional Resources: Logger.Log.
Log(LogType, Object, Object)
Logs message to the Unity Console using default logger.
void Log(LogType logType, object message, Object context)
Parameters
Remarks
Additional Resources: Logger.Log.
Log(LogType, string, Object)
Logs message to the Unity Console using default logger.
void Log(LogType logType, string tag, object message)
Parameters
Remarks
Additional Resources: Logger.Log.
Log(LogType, string, Object, Object)
Logs message to the Unity Console using default logger.
void Log(LogType logType, string tag, object message, Object context)
Parameters
Remarks
Additional Resources: Logger.Log.
Log(Object)
Logs message to the Unity Console using default logger.
void Log(object message)
Parameters
Remarks
Additional Resources: Logger.Log.
Log(string, Object)
Logs message to the Unity Console using default logger.
void Log(string tag, object message)
Parameters
Remarks
Additional Resources: Logger.Log.
Log(string, Object, Object)
Logs message to the Unity Console using default logger.
void Log(string tag, object message, Object context)
Parameters
Remarks
Additional Resources: Logger.Log.