Skip to content

Commit de610c8

Browse files
committed
Removes 'No configuration file parsed' warning
1 parent fbc8a67 commit de610c8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ func ReadConfiguration(fileName string) {
7171

7272
if err := viper.ReadInConfig(); err != nil {
7373
if _, ok := err.(viper.ConfigFileNotFoundError); ok {
74-
log.Printf("No configuration file parsed.")
74+
// No configuration file parsed
7575
} else {
7676
log.Printf("Config file parsing failed!")
7777
}

0 commit comments

Comments
 (0)