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

Method Write

Source/Engine/Engine/Debug.cs:127–130  ·  view source on GitHub ↗

Logs the raw message to the log. Type of the log message. Not: fatal will stop the engine. Error may show a message popup. The message contents.

(LogType logType, string message)

Source from the content-addressed store, hash-verified

125 /// <param name="logType">Type of the log message. Not: fatal will stop the engine. Error may show a message popup.</param>
126 /// <param name="message">The message contents.</param>
127 public static void Write(LogType logType, string message)
128 {
129 Logger.LogHandler.LogWrite(logType, message);
130 }
131
132 /// <summary>
133 /// Logs message to the Flax Console.

Callers 4

SaveMethod · 0.45
GetClassMethodsMethod · 0.45
GetClassFieldsMethod · 0.45
GetClassPropertiesMethod · 0.45

Calls 1

LogWriteMethod · 0.45

Tested by

no test coverage detected