refactor(ocpp-server): refine log message
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Thu, 27 Jun 2024 19:29:36 +0000 (21:29 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Thu, 27 Jun 2024 19:29:36 +0000 (21:29 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
tests/ocpp-server/server.py

index 14c638f5b5e6e321110a36f941f1fa88c41fc275..a7ec73c45c86b9ed1ade0c4553bde281b64bd34f 100644 (file)
@@ -118,7 +118,7 @@ class ChargePoint(ocpp.v201.ChargePoint):
             logging.info("%s failed", Action.GetBaseReport)
 
     async def _send_command(self, command_name: Action):
-        logging.debug("Sending OCPP command: %s", command_name)
+        logging.debug("Sending OCPP command %s", command_name)
         match command_name:
             case Action.ClearCache:
                 await self._send_clear_cache()