Browse Source

Fix log message

pull/14/head
Richard Neumann 3 years ago
parent
commit
e211891aae
  1. 2
      rcon/source/proto.py

2
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)

Loading…
Cancel
Save