Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


Debug

Class containing methods to ease debugging while developing a game.
Read time 2 minutesLast updated 4 days ago

Definition

  • Type: Class
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
public class Debug

Static Properties

Property

Description

developerConsoleEnabledAllows you to enable or disable the developer console.
developerConsoleVisibleControls whether the development console is visible.
isDebugBuildIn the Build Settings dialog there is a check box called "Development Build".
unityLoggerGet default debug logger.

Static Methods

Method

Description

AssertAssert a condition and logs an error message to the Unity console on failure.
AssertFormatAssert a condition and logs a formatted error message to the Unity console on failure.
BreakPauses the editor.
CheckIntegrityPerforms an integrity check of the currently running process and return discovered errors.
ClearDeveloperConsoleClears all previously printed messages, warnings, and errors from the developer console.
DrawLineDraws a line between specified start and end points.
DrawRayDraws a line from start to start + dir in world coordinates.
ExtractStackTraceNoAllocPopulate an unmanaged buffer with the current managed call stack as a sequence of UTF-8 bytes, without allocating GC memory. Returns the number of bytes written into the buffer.
IsValidationLevelEnabledReturns whether a given validation level is currently enabled.
LogLogs a message to the Unity Console.
LogAssertionA variant of Debug.Log that logs an assertion message to the console.
LogAssertionFormatLogs a formatted assertion message to the Unity console.
LogErrorA variant of Debug.Log that logs an error message to the console.
LogErrorFormatLogs a formatted error message to the Unity console.
LogExceptionA variant of Debug.Log that logs an exception message to the console.
LogFormatLogs a formatted message to the Unity Console.
LogWarningA variant of Debug.Log that logs a warning message to the console.
LogWarningFormatLogs a formatted warning message to the Unity Console.
RetrieveStartupLogsReturns any captured startup logs

Structs

Struct

Description

Debug.StartupLogInformation about a message