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

Method Log

Source/Engine/Engine/Debug.cs:136–139  ·  view source on GitHub ↗

Logs message to the Flax Console. String or object to be converted to string representation for display.

(object message)

Source from the content-addressed store, hash-verified

134 /// </summary>
135 /// <param name="message">String or object to be converted to string representation for display.</param>
136 public static void Log(object message)
137 {
138 Logger.Log(LogType.Info, message);
139 }
140
141 /// <summary>
142 /// Logs message to the Flax Console.

Callers 10

InitMainWindowMethod · 0.45
AssertMethod · 0.45
AssertFormatMethod · 0.45
LogAssertionMethod · 0.45
LogAssertionFormatMethod · 0.45
LogErrorMethod · 0.45
LogErrorFormatMethod · 0.45
LogFormatMethod · 0.45
LogWarningMethod · 0.45
LogWarningFormatMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected