diff --git a/custom_components/sws12500/routes.py b/custom_components/sws12500/routes.py index f110f8b..9ad9410 100644 --- a/custom_components/sws12500/routes.py +++ b/custom_components/sws12500/routes.py @@ -32,7 +32,7 @@ class Routes: """Dispatch.""" info = self.routes.get(request.path) if not info: - _LOGGER.debug("Route %s is not registered!") + _LOGGER.debug("Route %s is not registered!", request.path) return await unregistred(request) handler = info.handler if info.enabled else info.fallback return await handler(request)