From e211891aaeee85a0f7a01fb26d96d3ae8c3d0754 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Sun, 21 Aug 2022 12:52:35 +0200 Subject: [PATCH] Fix log message --- rcon/source/proto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rcon/source/proto.py b/rcon/source/proto.py index b8bbca0..4292b46 100644 --- a/rcon/source/proto.py +++ b/rcon/source/proto.py @@ -71,7 +71,7 @@ class Type(Enum): @classmethod def read(cls, file: IO) -> Type: """Read the type from a file-like object.""" - LOGGER.debug('Reading type asynchronously.') + LOGGER.debug('Reading type.') value = LittleEndianSignedInt32.read(file) LOGGER.debug(' => value: %i', value) return cls(value)