> For the complete documentation index, see [llms.txt](https://docs.medable.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.medable.com/cortex-api/scripting/modules-1/logger-module.md).

# Logger Module

Debug logging facility. Logs to the `logger` log source. Import

```
import logger from 'logger';
```

### Methods

### info/warn/error/debug/trace(...)

Takes variable arguments and accepts javascript objects. The resulting data is stored in the `dat` log field. the administration interface developer logs contains these log entries under the `Logger` source.

### Examples

Logger Example

```
import logger from 'logger'
logger.info('Hello World')
```

The logger responses are found in the `Logs` section of the admin portal. Filter by `Logger` type to see the result.![](https://files.readme.io/d1e27b0-Screen_Shot_2017-06-21_at_11.20.45_AM.png)<br>
