diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2022-07-02 15:45:11 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2022-07-02 15:45:11 +0300 |
commit | 8aba7ef18fe74b45aff13ae95b81083bb655ac37 (patch) | |
tree | 6372f784005869f4232e9b31987b7f677c68820c /src/polaris/protocol.py | |
parent | 0b77c82fc3ec3446b0c663a09b548fe09c8be3a1 (diff) |
polaris/protocol: change log level when logging about dropped duplicated packet
Diffstat (limited to 'src/polaris/protocol.py')
-rw-r--r-- | src/polaris/protocol.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/polaris/protocol.py b/src/polaris/protocol.py index a6d0541..36a1a8f 100644 --- a/src/polaris/protocol.py +++ b/src/polaris/protocol.py @@ -1047,7 +1047,7 @@ class UDPConnection(threading.Thread, ConnectionStatusListener): self.inseq = seq if seq < seq_max < 0xfd: - self._logger.warning(f'{lpfx} dropping: seq={seq}, {seq_name}={seq_max}') + self._logger.debug(f'{lpfx} dropping: seq={seq}, {seq_name}={seq_max}') return if seq not in self.response_handlers: |