mirror of
https://github.com/Pumpkin-MC/Pumpkin-Website.git
synced 2025-04-04 11:35:16 +00:00
1.4 KiB
1.4 KiB
Logging
Pumpkin allows you to customize what you want in your logs.
Configuring Logging
enabled
: Boolean
Whether logging is enabled or not.
:::code-group
[logging]
enabled = true
:::
level
: Enum
The log verbosity level. Possible values are:
- Off
- Error
- Warn
- Info
- Debug
- Trace
:::code-group
[logging]
enabled = true
level = "Debug"
:::
env
: Boolean
Whether to allow choosing the log level by setting the RUST_LOG
environment variable or not.
:::code-group
[logging]
enabled = true
env = true
:::
threads
: Boolean
Whether to print threads in the logging message or not.
:::code-group
[logging]
enabled = true
threads = false
:::
color
: Boolean
Whether to print to the console with color or not.
:::code-group
[logging]
enabled = true
color = false
:::
timestamp
: Boolean
Whether to print the timestamp in the message or not.
:::code-group
[logging]
enabled = true
timestamp = false
:::
Default Config
By default, logging is enabled at the Info
level and will print with color, threads, and timestamps.
:::code-group
[logging]
enabled = true
level = "Info"
env = false
threads = true
color = true
timestamp = true
:::