A variant of Debug.Log that logs a warning message to the console. The text message to display.
| 32 | /// </summary> |
| 33 | /// <param name="message">The text message to display.</param> |
| 34 | FORCE_INLINE static void LogWarning(const StringView& message) |
| 35 | { |
| 36 | Log(LogType::Warning, message); |
| 37 | } |
| 38 | |
| 39 | /// <summary> |
| 40 | /// A variant of Debug.Log that logs a error message to the console. |
no test coverage detected