from __future__ import annotations
+import logging
import os
import platform
import time
if TYPE_CHECKING:
from zeroconf.asyncio import AsyncServiceInfo
+_LOGGER = logging.getLogger(__name__)
+
# NTP epoch delta: difference between Unix epoch (1970) and NTP epoch (1900)
NTP_EPOCH_DELTA = 0x83AA7E80 # 2208988800 seconds
]
returncode, output = await check_output(*args)
+ _LOGGER.debug("%s returned %d with output: %s", cli_path, int(returncode), str(output))
if (
protocol == StreamingProtocol.RAOP
and returncode == 0