From fe785622ecd54ed6ad1a0236edbd64c34e637382 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Wed, 30 Jun 2021 12:31:56 +0200 Subject: [PATCH] Format log as string (#2984) --- supervisor/ingress.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supervisor/ingress.py b/supervisor/ingress.py index 29724b54e..a5279c71e 100644 --- a/supervisor/ingress.py +++ b/supervisor/ingress.py @@ -109,7 +109,7 @@ class Ingress(FileConfiguration, CoreSysAttributes): def validate_session(self, session: str) -> bool: """Return True if session valid and make it longer valid.""" if session not in self.sessions: - _LOGGER.debug("Session %f is not known", session) + _LOGGER.debug("Session %s is not known", session) return False # check if timestamp valid, to avoid crash on malformed timestamp