MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / LogErrorFormat

Method LogErrorFormat

Source/Engine/Engine/Debug.cs:219–222  ·  view source on GitHub ↗

Logs a formatted error message to the Flax console. A composite format string. Format arguments.

(string format, params object[] args)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 3

FormatMethod · 0.80
LogFormatMethod · 0.45
LogMethod · 0.45

Tested by

no test coverage detected