Alias of log: Prints the arguments to stdout, providing a best-effort human readable output. By default, stdout is redirected to DBMS_OUTPUT and can be redirected using the appropriate procedures in DBMS_MLE.
Rest
...args: any[]arguments to be printed to stdout.
Prints the arguments to stderr, providing a best-effort human readable output. By default, stderr is redirected to DBMS_OUTPUT and can be redirected using the appropriate procedures in DBMS_MLE.
Rest
...args: any[]arguments to be printed to stderr.
Increases the indentation for succeeding outputs to the console until groupEnd is called.
Rest
...labels: string[]if provided, the labels get printed before the indentation is increased.
Decreases the indentation for succeeding outputs to the console that was previously increased with group. If indentation is already at the lowest (outermost) level, this has no effect.
Alias of log: Prints the arguments to stdout, providing a best-effort human readable output. By default, stdout is redirected to DBMS_OUTPUT and can be redirected using the appropriate procedures in DBMS_MLE.
Rest
...args: any[]arguments to be printed to stdout.
Prints the arguments to stdout, providing a best-effort human readable output. By default, stdout is redirected to DBMS_OUTPUT and can be redirected using the appropriate procedures in DBMS_MLE.
Rest
...args: any[]arguments to be printed to stdout.
Stops the timer and prints its duration (in milliseconds). The timer is identified by its label. After this call, further calls to this function or to timeLog have no effect.
Optional
label: stringname of the timer to be stopped. If no name is provided, the default timer is used.
Logs, i.e. prints the duration of a timer (in milliseconds). The timer is identified by its label. If the timer has already been stopped, this has no effect.
Optional
label: stringname of the timer to be logged. If no name is provided, the default timer is used.
Alias of error: Prints the arguments to stderr, providing a best-effort human readable output. By default, stderr is redirected to DBMS_OUTPUT and can be redirected using the appropriate procedures in DBMS_MLE.
Rest
...args: any[]arguments to be printed to stderr.
Interface for console object.