Skip to content

Commit b6d085a

Browse files
authored
downgrade get_data response code logging from INFO to DEBUG (#5)
1 parent 25bae56 commit b6d085a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hole/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ async def get_data(self):
4545
async with async_timeout.timeout(5, loop=self._loop):
4646
response = await self._session.get(self.base_url)
4747

48-
_LOGGER.info("Response from *hole: %s", response.status)
48+
_LOGGER.debug("Response from *hole: %s", response.status)
4949
self.data = await response.json()
5050
_LOGGER.debug(self.data)
5151

0 commit comments

Comments
 (0)