> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bricks.tools/llms.txt
> Use this file to discover all available pages before exploring further.

# Debug panel

> Inspect runtime state and troubleshoot application issues on the device

The debug panel is an on-device overlay that displays runtime information for troubleshooting application issues. Use it to inspect data values, generator state, and application behavior directly on the device.

## Open the debug panel

* **From the device** — Open the system menu and tap **Debug Panel**
* **From BRICKS CLI** — Send the action to a device group:

```bash theme={null}
bricks group dispatch <group-id> debug-panel-open
```

To close the panel, tap the close button on the overlay, or dispatch `debug-panel-close`.

## What you can inspect

The debug panel provides real-time visibility into your application's runtime state:

* **Data values** — View current values of data nodes in the active subspace
* **Generator state** — Check generator status, outlet values, and connection state
* **Canvas info** — See which canvas is currently active

## Next steps

<CardGroup cols={2}>
  <Card title="Local debugging" icon="laptop-code" href="/foundation/local-debugging">
    Connect Chrome DevTools to inspect and debug your application.
  </Card>

  <Card title="Activity log monitoring" icon="chart-line" href="/foundation/activity-log">
    Monitor device events and application behavior over time.
  </Card>
</CardGroup>
