> For the complete documentation index, see [llms.txt](https://xeavin.gitbook.io/the-insurgents-descriptive-inventory/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://xeavin.gitbook.io/the-insurgents-descriptive-inventory/overview/configuration/errors.md).

# Errors

### General

While modifying a configuration file, errors may occur. To detect them, enable the console feature of the External File Loader as follows:

1. Navigate into the game directory.
2. Open the file: `{game}/x64/hook.ini`.
3. Locate the `[log]` section.
4. Set `disableConsole` to `false`.

When starting the game, an additional terminal window will now open beside it, showing information about any errors as they occur.

### Example

Let's assume you created the following configuration:

```lua
local function config(contents)
  local inventory = {
    {contents.bangle, "..."}
  }

  return inventory
end

return config
```

As you probably noticed, the content type (`equipment`) is missing in `contents.bangle`. That's why an error will be thrown once this configuration file is loaded.
