Skip to content

Commit 2f9b301

Browse files
committed
Remove logger-HOI-lines
1 parent cf9127a commit 2f9b301

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

plugwise_usb/connection/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,6 @@ async def pair_plus_device(self, mac: str) -> bool:
220220
raise NodeError(
221221
"Pairing failed, StickNetworkInfoResponse is None"
222222
) from None
223-
_LOGGER.debug("HOI NetworkInfoRequest done")
224223

225224
# Init Stick
226225
try:
@@ -229,7 +228,6 @@ async def pair_plus_device(self, mac: str) -> bool:
229228
raise NodeError(
230229
f"Pairing failed, failed to initialize Stick: {exc}"
231230
) from exc
232-
_LOGGER.debug("HOI Init done")
233231

234232
try:
235233
request = CirclePlusConnectRequest(self.send, bytes(mac, UTF8))
@@ -243,8 +241,6 @@ async def pair_plus_device(self, mac: str) -> bool:
243241
if response.allowed.value != 1:
244242
raise NodeError("Pairing failed, not allowed")
245243

246-
_LOGGER.debug("HOI PlusConnectRequest done")
247-
248244
return True
249245

250246
async def get_node_details(

0 commit comments

Comments
 (0)