Home > rc-js-util > _Debug > verboseLog
Logging which can be conditionally enabled by setting DEBUG_VERBOSE to true.
Signature:
static verboseLog(this: void, message: string, ancillaryObject?: object): void;
| Parameter | Type | Description |
|---|---|---|
| this | void | |
| message | string | |
| ancillaryObject | object | (Optional) |
Returns:
void
function foo(a1: number) {
_BUILD.DEBUG && _Debug.verboseLog(`got me a ${a1}`);
}