# 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](/reference/servoycore/dev-api/js-lib/object.md) **value** the error object

**Returns:** void

**Sample**

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

### log(value)

Report a message to the console.

**Parameters**

* [Object](/reference/servoycore/dev-api/js-lib/object.md) **value** the info

**Returns:** void

**Sample**

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

### warn(value)

Report a warning to the console.

**Parameters**

* [Object](/reference/servoycore/dev-api/js-lib/object.md) **value** the warning object

**Returns:** void

**Sample**

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

***


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.servoy.com/reference/extension-dev/component_services/console.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
