# Loggers

**@node-ts/bus-core** by default uses the [debug](https://www.npmjs.com/package/debug) library in order to log details to STDOUT. All log messages that originate from this library are named with a `@node-ts/` prefix. In order to get full debug output, set the `DEBUG` environment variable to `@node-ts/*`

For example:

```shell
DEBUG="@node-ts/*" npm run dev
```

If you want to use your own logging provider and change the output format etc, this can be changed with any other logger by providing an adapter layer for a [custom logger](/guide/loggers/custom-loggers.md).


---

# 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://bus.node-ts.com/guide/loggers.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.
