Logs a formatted assertion message to the Flax console. A composite format string. Format arguments.
(string format, params object[] args)
| 175 | /// <param name="format">A composite format string.</param> |
| 176 | /// <param name="args">Format arguments.</param> |
| 177 | [Conditional("FLAX_ASSERTIONS")] |
| 178 | public static void LogAssertionFormat(string format, params object[] args) |
| 179 | { |
| 180 | Logger.LogFormat(LogType.Error, format, args); |
| 181 | } |
| 182 | |
| 183 | /// <summary> |
| 184 | /// Logs a formatted assertion message to the Flax console. |