mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2026-01-07 15:34:52 +00:00
Warn if retrying
This commit is contained in:
parent
889611ccd0
commit
33263e9ce6
1 changed files with 1 additions and 1 deletions
|
|
@ -424,7 +424,7 @@ class Session:
|
||||||
try:
|
try:
|
||||||
return self._send(data)
|
return self._send(data)
|
||||||
except (OSError, TimeoutError):
|
except (OSError, TimeoutError):
|
||||||
log.debug("Retrying {}".format(type(data)))
|
log.warning("Retrying {}".format(type(data)))
|
||||||
continue
|
continue
|
||||||
else:
|
else:
|
||||||
return None
|
return None
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue