This commit is contained in:
J. Nick Koston 2024-08-29 10:28:20 -10:00
parent 805213264d
commit 265167279c
No known key found for this signature in database
2 changed files with 2 additions and 4 deletions

View File

@ -26,9 +26,7 @@ jobs:
- "3.11"
- "3.12"
os:
- ubuntu-latest
- windows-latest
- macos-latest
extension:
- "skip_cython"
- "use_cython"

View File

@ -712,7 +712,7 @@ class APIConnection:
if debug_enabled := self._debug_enabled:
for msg in msgs:
_LOGGER.debug(
"%s: Sending %s: %s", self.log_name, type(msg).__name__, msg
"%s: Sending %s: %r", self.log_name, type(msg).__name__, msg
)
if TYPE_CHECKING:
@ -908,7 +908,7 @@ class APIConnection:
if debug_enabled:
_LOGGER.debug(
"%s: Got message of type %s: %s",
"%s: Got message of type %s: %r",
self.log_name,
msg_type.__name__,
msg,