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

Method LogWarning

Source/Engine/Engine/Debug.cs:291–294  ·  view source on GitHub ↗

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

289 /// </summary>
290 /// <param name="message">String or object to be converted to string representation for display.</param>
291 public static void LogWarning(object message)
292 {
293 Logger.Log(LogType.Warning, message);
294 }
295
296 /// <summary>
297 /// A variant of Debug.Info that logs a warning message to the console.

Callers

nothing calls this directly

Calls 1

LogMethod · 0.45

Tested by

no test coverage detected