mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-30 09:38:24 -05:00
47 lines
889 B
Markdown
47 lines
889 B
Markdown
# `reth config`
|
|
|
|
Write config to stdout
|
|
|
|
```bash
|
|
$ reth config --help
|
|
|
|
Usage: reth config [OPTIONS]
|
|
|
|
Options:
|
|
--config <FILE>
|
|
The path to the configuration file to use.
|
|
|
|
--default
|
|
Show the default config
|
|
|
|
Logging:
|
|
--log.persistent
|
|
The flag to enable persistent logs
|
|
|
|
--log.directory <PATH>
|
|
The path to put log files in
|
|
|
|
[default: /Users/georgios/Library/Caches/reth/logs]
|
|
|
|
--log.journald
|
|
Log events to journald
|
|
|
|
--log.filter <FILTER>
|
|
The filter to use for logs written to the log file
|
|
|
|
[default: debug]
|
|
|
|
Display:
|
|
-v, --verbosity...
|
|
Set the minimum log level.
|
|
|
|
-v Errors
|
|
-vv Warnings
|
|
-vvv Info
|
|
-vvvv Debug
|
|
-vvvvv Traces (warning: very verbose!)
|
|
|
|
-q, --quiet
|
|
Silence all log output
|
|
```
|