A variant of Debug.Info that logs an assertion message to the console. String or object to be converted to string representation for display.
(object message)
| 153 | /// </summary> |
| 154 | /// <param name="message">String or object to be converted to string representation for display.</param> |
| 155 | [Conditional("FLAX_ASSERTIONS")] |
| 156 | public static void LogAssertion(object message) |
| 157 | { |
| 158 | Logger.Log(LogType.Error, message); |
| 159 | } |
| 160 | |
| 161 | /// <summary> |
| 162 | /// A variant of Debug.Info that logs an assertion message to the console. |