1
0
Fork 0

Removed stdout option from config.

This commit is contained in:
Alexander Andreev 2023-04-24 00:43:03 +04:00
parent 1e07928b2c
commit b50c411922
Signed by: Arav
GPG Key ID: D22A817D95815393
2 changed files with 0 additions and 3 deletions

View File

@ -7,8 +7,6 @@ listen_on: "unix /var/run/dwelling-upload/sock"
hash_salt: "iyP3oZWHI3xO3XBF7s78Vg"
# Logging options.
log:
# Output messages to stdout as well as to theirs files.
stdout: true
# dwelling-upload logs.
error: "/var/log/dwelling-upload/error.log"
upload: "/var/log/dwelling-upload/upload.log"

View File

@ -15,7 +15,6 @@ type Configuration struct {
User string `yaml:"user"`
Chroot string `yaml:"chroot"`
Log struct {
ToStdout bool `yaml:"stdout"`
Error string `yaml:"error"`
Upload string `yaml:"upload"`
Download string `yaml:"download"`