Skip to content

Commit 8639316

Browse files
authored
Merge pull request #733 from gotify/silent
fix: enable silent mode
2 parents 2eee800 + 5395112 commit 8639316

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ func configFiles() []string {
6666
// Get returns the configuration extracted from env variables or config file.
6767
func Get() *Configuration {
6868
conf := new(Configuration)
69-
err := configor.New(&configor.Config{ENVPrefix: "GOTIFY"}).Load(conf, configFiles()...)
69+
err := configor.New(&configor.Config{ENVPrefix: "GOTIFY", Silent: true}).Load(conf, configFiles()...)
7070
if err != nil {
7171
panic(err)
7272
}

0 commit comments

Comments
 (0)