Skip to content

Commit

Permalink
Change logging.warning call to logging.debug as intended
Browse files Browse the repository at this point in the history
  • Loading branch information
MHendricks committed May 14, 2024
1 parent eb02401 commit d929925
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hab_gui/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def verbosity(self, value):
user_prefs.load()
user_prefs.setdefault("verbosity", {})["hab-gui"] = value
user_prefs.save()
logger.warning(f"User prefs verbosity saved to {user_prefs.filename}")
logger.debug(f"User prefs verbosity saved to {user_prefs.filename}")

@property
def uri(self):
Expand Down

0 comments on commit d929925

Please sign in to comment.