From 25d8d9b87686fe48419fa7214573ad47cedf01fe Mon Sep 17 00:00:00 2001 From: Teemu Rytilahti Date: Sun, 13 Jan 2019 19:36:05 +0100 Subject: [PATCH] warning->debug on duplicate methods, related to #36 --- songpal/service.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/songpal/service.py b/songpal/service.py index 68ef55c..1ebf77f 100644 --- a/songpal/service.py +++ b/songpal/service.py @@ -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)