diff --git a/mppsolar/protocols/abstractprotocol.py b/mppsolar/protocols/abstractprotocol.py index 147ca1c2..a88b385d 100644 --- a/mppsolar/protocols/abstractprotocol.py +++ b/mppsolar/protocols/abstractprotocol.py @@ -233,7 +233,7 @@ def decode(self, response, command) -> dict: Take the raw response and turn it into a dict of name: value, unit entries """ - log.info(f"response passed to decode: {response}") + log.debug(f"response passed to decode: {response}") msgs = {} # Add metadata @@ -277,7 +277,7 @@ def decode(self, response, command) -> dict: response_type = command_defn["response_type"] else: response_type = "DEFAULT" - log.info(f"Processing response of type {response_type}") + log.debug(f"Processing response of type {response_type}") # Split the response into individual responses responses = self.get_responses(response)