Debug.Log Extensions
Documentation (1.1.9)

◆ Assert() [5/11]

static void Debug.Assert ( bool  condition,
int  channel,
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.
channelThe channel to which the message belongs if logged.
messagestring or object to be converted to string representation for display.
contextObject to which the assertion applies.