A variant of Debug.Log that logs a error message to the console. The text message to display.
| 41 | /// </summary> |
| 42 | /// <param name="message">The text message to display.</param> |
| 43 | FORCE_INLINE static void LogError(const StringView& message) |
| 44 | { |
| 45 | Log(LogType::Error, message); |
| 46 | } |
| 47 | |
| 48 | /// <summary> |
| 49 | /// Logs a formatted exception message to the Flax Console. |