Logs a formatted error message to the Flax console. A composite format string. Format arguments.
(string format, params object[] args)
| 217 | /// <param name="format">A composite format string.</param> |
| 218 | /// <param name="args">Format arguments.</param> |
| 219 | public static void LogErrorFormat(string format, params object[] args) |
| 220 | { |
| 221 | Logger.LogFormat(LogType.Error, format, args); |
| 222 | } |
| 223 | |
| 224 | /// <summary> |
| 225 | /// Logs a formatted error message to the Flax console. |