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

# Logging Commands: Setup, Audit, and Ignore Channels

> Reference for Solara's logging commands: configure log channels by event type, view audit trails, and exclude channels from message tracking.

Solara's logging commands let you configure where each type of server event is recorded and filter out channels you don't want tracked.

### /logs setup

Configure a channel to receive logs for a specific event type. Run this command once per event type to route each log to the channel of your choice.

```bash theme={null}
/logs setup message-delete #mod-logs
/logs setup member-join #join-logs
```

**Supported event types:**

| Event type        | What it captures                       |
| ----------------- | -------------------------------------- |
| `message-delete`  | Deleted messages with original content |
| `message-edit`    | Message edits showing before and after |
| `member-join`     | New members joining the server         |
| `member-leave`    | Members leaving or being kicked        |
| `member-ban`      | Bans and unbans                        |
| `role-change`     | Role additions and removals            |
| `nickname-change` | Nickname and username updates          |
| `voice-join`      | Members joining a voice channel        |
| `voice-leave`     | Members leaving a voice channel        |
| `channel-update`  | Channel creation, deletion, and edits  |

<Tip>Route high-volume events like `message-delete` and `message-edit` to a separate channel from moderation actions to keep your logs easy to read.</Tip>

***

### /logs disable

Disable logging for a specific event type. Solara stops sending log entries for that event until you re-enable it with `/logs setup`.

```bash theme={null}
/logs disable message-edit
```

***

### /audit

View the server's audit trail. Run it without arguments for the full log, filter by user to see only their actions, or filter by action type to narrow the results.

```bash theme={null}
/audit
/audit @user
/audit ban
```

<Note>The audit log shows actions recorded by Solara. It is separate from Discord's built-in audit log and includes additional context such as case notes and moderator references.</Note>

***

### /ignore-channel

Exclude a channel from message logs. Solara will not capture message edits or deletions in that channel. Useful for bot command channels with high noise volume.

```bash theme={null}
/ignore-channel #bot-commands
```

<Tip>You can ignore as many channels as you need. Run `/ignore-channel` again on the same channel to remove it from the exclusion list.</Tip>
