A variant of Debug.Info that logs an error message to the console. String or object to be converted to string representation for display.
(object message)
| 197 | /// </summary> |
| 198 | /// <param name="message">String or object to be converted to string representation for display.</param> |
| 199 | public static void LogError(object message) |
| 200 | { |
| 201 | Logger.Log(LogType.Error, message); |
| 202 | } |
| 203 | |
| 204 | /// <summary> |
| 205 | /// A variant of Debug.Info that logs an error message to the console. |