# 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

| Type | Name                         | Summary                          |
| ---- | ---------------------------- | -------------------------------- |
| void | [error(value)](#error-value) | Report an error to the console.  |
| void | [log(value)](#log-value)     | Report a message to the console. |
| void | [warn(value)](#warn-value)   | Report a warning to the console. |

## Methods Detailed

### error(value)

Report an error to the console.

**Parameters**

* [Object](https://docs.servoy.com/reference/servoycore/dev-api/js-lib/object) **value** the error object

**Returns:** void

**Sample**

```js
console.error('ERROR')
```

### log(value)

Report a message to the console.

**Parameters**

* [Object](https://docs.servoy.com/reference/servoycore/dev-api/js-lib/object) **value** the info

**Returns:** void

**Sample**

```js
console.log('some info')
```

### warn(value)

Report a warning to the console.

**Parameters**

* [Object](https://docs.servoy.com/reference/servoycore/dev-api/js-lib/object) **value** the warning object

**Returns:** void

**Sample**

```js
console.warn('some warning')
```

***
