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

Method LogAssertionFormat

Source/Engine/Engine/Debug.cs:177–181  ·  view source on GitHub ↗

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

(string format, params object[] args)

Source from the content-addressed store, hash-verified

175 /// <param name="format">A composite format string.</param>
176 /// <param name="args">Format arguments.</param>
177 [Conditional("FLAX_ASSERTIONS")]
178 public static void LogAssertionFormat(string format, params object[] args)
179 {
180 Logger.LogFormat(LogType.Error, format, args);
181 }
182
183 /// <summary>
184 /// Logs a formatted assertion 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