From 01b49fd9ca3090fce119f88cf93307b074ddd1f1 Mon Sep 17 00:00:00 2001 From: Seb Ruiz Date: Fri, 24 Jan 2020 09:28:33 +1100 Subject: [PATCH] Remove spammy debug message --- custom_components/bhyve/pybhyve/client.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/custom_components/bhyve/pybhyve/client.py b/custom_components/bhyve/pybhyve/client.py index 86dbcb3..8d4bfd9 100644 --- a/custom_components/bhyve/pybhyve/client.py +++ b/custom_components/bhyve/pybhyve/client.py @@ -52,8 +52,6 @@ async def _request(self, method: str, endpoint: str, params: dict = None) -> lis "Chrome/72.0.3626.81 Safari/537.36" ) - _LOGGER.debug("Making request: %s: %s %s", method, endpoint, params) - async with self._session.request( method, url, params=params, headers=headers ) as resp: