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)