Debug.Log Extensions
Documentation (1.1.9)

◆ Assert() [4/11]

static void Debug.Assert ( bool  condition,
object  message,
Object  context = null 
)
static

Logs an error message to the Console if condition is not true.

Calls to this method will be stripped from release builds unless the UNITY_ASSERTIONS symbol is defined.

Parameters
conditionCondition you expect to be true.
messagestring or object to be converted to string representation for display.
contextObject to which the assertion applies.