|
Debug.Log Extensions
Documentation (1.1.9)
|
|
static |
If condition is false logs to the Console on the given channel an error message formed by joining the given text strings together and returns true.
If condition is true returns false without logging anything.
This can be useful for checking that the arguments passed to a function are valid and if not returning early with an error.
An error is only logged the first time during a session that the condition evaluates to false to avoid flooding the log file.
In release builds an error will only be logged if the UNITY_ASSERTIONS symbol is defined.
| condition | Condition you expect to be true. |
| channel | The channel to which the message belongs if logged. |
| messageParts | strings to join together to form the message. |
true if condition was false; otherwise, false.