# Adding Categories Granularly

You can also add categories with very granular information using the category() method. This method will allow you to add a category definition with a range of severity levels and even a list of which appenders to respond to.

```javascript
public void category(
    string name,
    [numeric levelMin='0',]
    [numeric levelMax='4',]
    [string appenders='*']
)
```

## Parameters:

| Name      | Description                                                                                                                                                                    |
| --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| name      | A unique name for the category to register. Only unique names can be registered per instance.                                                                                  |
| levelMin  | The default min log level for this category. (OPTIONAL. Defaults to 0 \[FATAL].)                                                                                               |
| levelMax  | The max default log level for this category. (OPTIONAL. Defaults to 4 \[DEBUG].)                                                                                               |
| appenders | A list of appender names to configure this category with else it will use all the appenders in the root logger. You can also use \* to add all registered apenders. (OPTIONAL) |

## Example

```javascript
//log all email service messages to the MyLogFileAppender and the Console.
config.category( name="org.model.EmailService", appenders="MyLogFileAppender,Console" );
```


---

# 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/configuration/configuring-logbox/adding-categories-granularly.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.
