Console (serverside)
(console)
Overview
The ConsoleObject
class enables server-side console logging for custom web components or services in Servoy NG client applications. It mimics the browser-side console
object, providing methods to log messages, warnings, and errors, which are particularly useful for debugging and monitoring application behavior.
The error
method reports errors, including stack traces when available, ensuring comprehensive logging. Alongside log
and warn
, these methods adapt their behavior based on the application type. For debug clients, messages are sent to the debugger, while for other applications, messages are reported using the standard JavaScript reporting mechanisms.
Methods Summarized
void
Report an error to the console.
void
Report a message to the console.
void
Report a warning to the console.
Methods Detailed
error(value)
Report an error to the console.
Parameters
Object value the error object
Returns: void
Sample
log(value)
Report a message to the console.
Parameters
Object value the info
Returns: void
Sample
warn(value)
Report a warning to the console.
Parameters
Object value the warning object
Returns: void
Sample
Last updated