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

Method LogAssertion

Source/Engine/Engine/Debug.cs:155–159  ·  view source on GitHub ↗

A variant of Debug.Info that logs an assertion message to the console. String or object to be converted to string representation for display.

(object message)

Source from the content-addressed store, hash-verified

153 /// </summary>
154 /// <param name="message">String or object to be converted to string representation for display.</param>
155 [Conditional("FLAX_ASSERTIONS")]
156 public static void LogAssertion(object message)
157 {
158 Logger.Log(LogType.Error, message);
159 }
160
161 /// <summary>
162 /// A variant of Debug.Info that logs an assertion message to the console.

Callers 1

FailMethod · 0.80

Calls 1

LogMethod · 0.45

Tested by

no test coverage detected