A variant of Debug.Log that logs an info message to the console. The text message to display.
| 23 | /// </summary> |
| 24 | /// <param name="message">The text message to display.</param> |
| 25 | FORCE_INLINE static void Log(const StringView& message) |
| 26 | { |
| 27 | Log(LogType::Info, message); |
| 28 | } |
| 29 | |
| 30 | /// <summary> |
| 31 | /// A variant of Debug.Log that logs a warning message to the console. |
no outgoing calls
no test coverage detected