js-util

Home > rc-js-util > _Debug > verboseLog

_Debug.verboseLog() method

Logging which can be conditionally enabled by setting DEBUG_VERBOSE to true.

Signature:

static verboseLog(this: void, message: string, ancillaryObject?: object): void;

Parameters

Parameter Type Description
this void  
message string  
ancillaryObject object (Optional)

Returns:

void

Example

function foo(a1: number) {
    _BUILD.DEBUG && _Debug.verboseLog(`got me a ${a1}`);
}