Skip to main content
method Console.debug
Console.debug(...data: any[]): void
Deprecated

Outputs a debugging message to the console

Examples

Example 1

console.debug('Debug message', { detail: 'some data' });

Parameters

<span>...data</span>: any[]

Return Type

void
Back to top