> ## Documentation Index
> Fetch the complete documentation index at: https://forest-chore-open-api.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Display extensive logs

For debugging purposes your might want to display extensive logs from your Admin Backend API.\
\
To do so, simply add the following in your code:

<Tabs>
  <Tab title="SQL">
    ```javascript theme={null}
    ...

    NODE_ENV=development
    ```
  </Tab>

  <Tab title="Mongoose">
    ```javascript theme={null}
    ...

    mongoose.set('debug', true);
    ```
  </Tab>
</Tabs>

<Info>
  This can be useful to understand how queries are executed to display your collections or relationships.
</Info>
