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

Method LogError

Source/Engine/Engine/Debug.cs:199–202  ·  view source on GitHub ↗

A variant of Debug.Info that logs an error 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

197 /// </summary>
198 /// <param name="message">String or object to be converted to string representation for display.</param>
199 public static void LogError(object message)
200 {
201 Logger.Log(LogType.Error, message);
202 }
203
204 /// <summary>
205 /// A variant of Debug.Info that logs an error message to the console.

Callers 7

TestLibraryImportsMethod · 0.45
StreamMethod · 0.45
GetThunkMethod · 0.45
CreateInstanceMethod · 0.45
OnUnhandledExceptionMethod · 0.45

Calls 1

LogMethod · 0.45

Tested by 1

TestLibraryImportsMethod · 0.36