Skip to content

Commit

Permalink
Remove error logs
Browse files Browse the repository at this point in the history
  • Loading branch information
LennP committed Feb 10, 2024
1 parent 629e8d9 commit 172b59c
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions motionblindsble/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,6 @@ def _requires_connection_decorator(
func: Callable, disable_callback: MotionCallback | None
) -> Callable:
async def wrapper(self: MotionDevice, *args, **kwargs):
_LOGGER.error("Inside requires: %s", disable_callback)
_LOGGER.error("Calling func: %s", func)
if not await self.connect(
disable_callbacks=(
[disable_callback] if disable_callback is not None else []
Expand Down Expand Up @@ -827,7 +825,6 @@ async def close_tilt(self) -> bool:
def _disable_connection_callbacks(
self, callbacks: list[MotionCallback]
) -> None:
_LOGGER.error(callbacks)
self._disabled_connection_callbacks = callbacks

def _is_connection_callback_disabled(
Expand Down

0 comments on commit 172b59c

Please sign in to comment.