Skip to content

Commit

Permalink
cleaned up message; switched to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
caronc committed Jul 1, 2023
1 parent 5624dbf commit ea5e095
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions apprise/plugins/NotifyPushover.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,10 +288,8 @@ def __init__(self, user_key, token, targets=None, priority=None,
self.sound = NotifyPushover.default_pushover_sound \
if not isinstance(sound, str) else sound.lower()
if self.sound and self.sound not in PUSHOVER_SOUNDS:
msg = 'The sound specified ({}) is not a default sound. ' \
'Ensure you have a custom sound with this name defined.' \
.format(sound)
self.logger.info(msg)
msg = 'Using custom sound specified ({}). '.format(sound)
self.logger.debug(msg)

# The Priority of the message
self.priority = int(
Expand Down

0 comments on commit ea5e095

Please sign in to comment.