Skip to content

Commit

Permalink
warning->debug on duplicate methods, related to #36
Browse files Browse the repository at this point in the history
  • Loading branch information
rytilahti committed Jan 13, 2019
1 parent 495b1f2 commit 25d8d9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions songpal/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ async def from_payload(cls, payload, endpoint, idgen, debug, force_protocol=None
name = sig[0]
parsed_sig = MethodSignature.from_payload(*sig)
if name in methods:
_LOGGER.warning("Got duplicate signature for %s, existing was %s. Keeping the existing one",
parsed_sig, methods[name])
_LOGGER.debug("Got duplicate signature for %s, existing was %s. Keeping the existing one",
parsed_sig, methods[name])
else:
methods[name] = Method(service, parsed_sig, debug)

Expand Down

0 comments on commit 25d8d9b

Please sign in to comment.