# Using LogBox

Once you have created and configured the LogBox library, you can interact with it in order to get logger objects. The main methods you will use to interact with LogBox are the following, but I recommend you look at the CFC api (<http://www.coldbox.org/api>) in order to get a listing of all available methods.

| Method                                  | Description                                                                       |
| --------------------------------------- | --------------------------------------------------------------------------------- |
| `LogBoxConfig getConfig()`              | Get the config object registered                                                  |
| `Logger getLogger(any category)`        | Get a named logger object using a category string or the object you will log from |
| `Logger getRootLogger()`                | Get a reference to the root logger                                                |
| `string getVersion()`                   | Get the current version of LogBox                                                 |
| `string getCurrentAppenders()`          | Get a list of currently registered appenders                                      |
| `string getCurrentLoggers()`            | Get a list of currently instantiated loggers                                      |
| `void configure( LogBoxConfig config )` | Dynamically re-configure the LogBox library                                       |

The two most important methods are `getRootLogger() & getLogger()`, which you will use to get the root or named logger objects.

> **Caution:** When you ask for a named category logger and LogBox cannot find its definition, it will create a logger that will inherit its logging levels and appenders from the root logger.


---

# 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://logbox.ortusbooks.com/5.x/usage/using-logbox.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.
