Skip to content

Commit

Permalink
turned down logging
Browse files Browse the repository at this point in the history
  • Loading branch information
myleshorton committed Dec 12, 2023
1 parent 0a63256 commit b2801bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion desktop/app/settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ func (s *Settings) getVal(name SettingName) (interface{}, error) {
if val, ok := s.m[name]; ok {
return val, nil
}
s.log.Errorf("Could not get value for %s", name)
s.log.Debugf("Could not get value for %s", name)
return nil, fmt.Errorf("no value for %v", name)
}

Expand Down

0 comments on commit b2801bc

Please sign in to comment.