Skip to content

Commit

Permalink
Only warn on unknown modules. Fixes #45
Browse files Browse the repository at this point in the history
  • Loading branch information
fleaz committed Apr 23, 2019
1 parent 47af480 commit 8ca6ff6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func main() {
for moduleName := range configurtaion.Modules {
module, err := createModuleObject(moduleName)
if err != nil {
log.Error(err)
log.Warn(err)
continue
}
log.Infof("Loaded module %q", moduleName)
Expand Down

0 comments on commit 8ca6ff6

Please sign in to comment.