A variant of Debug.Info that logs a warning message to the console. String or object to be converted to string representation for display.
(object message)
| 289 | /// </summary> |
| 290 | /// <param name="message">String or object to be converted to string representation for display.</param> |
| 291 | public static void LogWarning(object message) |
| 292 | { |
| 293 | Logger.Log(LogType.Warning, message); |
| 294 | } |
| 295 | |
| 296 | /// <summary> |
| 297 | /// A variant of Debug.Info that logs a warning message to the console. |