Method LogWarning
- Namespace
- Gamelogic.Extensions
- Assembly
- Gamelogic.Extensions.dll
LogWarning(object, Object)
Logs a warning message to the Unity console (only in DEBUG builds).
[Conditional("DEBUG")]
public static void LogWarning(object message, Object context = null)
Parameters
messageobjectThe message to log.
contextObjectOptional Unity Object context for the log message.
LogWarning(string, object, Object)
Logs a prefixed warning message to the Unity console (only in DEBUG builds).
[Conditional("DEBUG")]
public static void LogWarning(string type, object message, Object context = null)