Console (serverside)
Last updated
Was this helpful?
(console)
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.
Report an error to the console.
Parameters
Object value the error object
Returns: void
Sample
Report a message to the console.
Parameters
Object value the info
Returns: void
Sample
Report a warning to the console.
Parameters
Object value the warning object
Returns: void
Sample
Last updated
Was this helpful?
Was this helpful?
console.error('ERROR')console.log('some info')console.warn('some warning')