> For the complete documentation index, see [llms.txt](https://prism3.gitbook.io/logger/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://prism3.gitbook.io/logger/configurating/configurations/velocity.md).

# Velocity

{% code title="config - Velocity.toml" %}

```toml
# /////////////////////////////////////////////////////////////
# /                                                           /
# /                      Logger Plugin                        /
# /                                                           /
# /                   [ Velocity Version ]                    /
# /                                                           /
# /////////////////////////////////////////////////////////////
#
# Thank you for using Logger Plugin! If you are experiencing any issues
# or have any suggestions / features you want to be implemented into the plugin
# feel free to join the support Discord Server!
#
# Spigot: Prism3
# Discord: Prism3#9371 | ID: 403667971089760257
# Discord Server: https://discord.gg/MfR5mcpVfX
#
# Config: 1.8


# Server Name
Server-Name: "Server_Name"

# Date & Time Formatter
Time-Formatter: "yyyy-MM-dd HH:mm:ss"

# How many days for the logs to be deleted
# Set it to -1 to cancel the Deletion
File-Deletion: 7

# Log to Files
Log-to-Files: true

# This will log players with the "loggerproxy.staff.log" permission node in their own folder / file
Staff:
  Enabled: false

# Logging features
Log-Player:
  Chat: true
  Commands: true
  Login: true
  Leave: true

Log-Server:
  Console-Commands: true
  Start: true
  Stop: true
  RAM: true

Log-Extra:
  LiteBans: true


# Player-Commands features
# Do not add / at first
Player-Commands:
  Whitelist-Commands: false
  Commands-to-Log:
    - velocity
    - server
  Blacklist-Commands: true
  Commands-to-Block:
    - login
    - register
    - msg

# Enable to show player's IPs
Player-Login:
  Player-IP: false

# Server RAM Log
# How often should we check for the Proxy's RAM
# It's better to have it above 1 min to avoid any complications
# Value in Seconds
# Percent goes from 0 -> 100
RAM:
  Checker: 300
  Percent: 80

# LiteBans Features to Log
# It does not log revoked actions!
# example: unban <player>
LiteBans:
  IP-Ban: true
  Temp-IP-Ban: true
  Ban: true
  Temp-Ban: true
  Mute: true
  Temp-Mute: true
  Kick: true

# External Database Feature
# Available Types are MySQL and MariaDB
# Data-Deletion Value in Days, Set it -1 to cancel
Database:
  Enable: false
  Type: MySQL
  Host: localhost
  Port: 3306
  Username: username
  Password: PassworD
  Database: database
  Data-Deletion: 7

# SQLite Feature
# Data-Deletion value in days, set it -1 to cancel
SQLite:
  Enable: false
  Data-Deletion: 7
```

{% endcode %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://prism3.gitbook.io/logger/configurating/configurations/velocity.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
