1
0

Removed ToStdout option from Configuration.

This commit is contained in:
Alexander Andreev 2023-02-07 02:24:44 +04:00
parent 98786e6964
commit 192fa0d58f
Signed by: Arav
GPG Key ID: 0388CC8FAA51063F
2 changed files with 1 additions and 4 deletions

View File

@ -12,6 +12,4 @@ liquidsoap:
# How much songs to list on a page
list_last_n_songs: 10
log:
# Output messages to stdout as well as to theirs files.
stdout: true
error: "/var/log/dwelling-radio/error.log"

View File

@ -21,8 +21,7 @@ type Configuration struct {
} `yaml:"liquidsoap"`
ListLastNSongs int `yaml:"list_last_n_songs"`
Log struct {
ToStdout bool `yaml:"stdout"`
Error string `yaml:"error"`
Error string `yaml:"error"`
} `yaml:"log"`
}