change loglevel

This commit is contained in:
Peter Bieringer 2025-02-11 16:29:33 +01:00
parent 803763729a
commit fde0ecb9b2

View file

@ -269,7 +269,7 @@ class ApplicationPartPut(ApplicationBase):
# return better matching HTTP result in case errno is provided and catched
errno_match = re.search("\\[Errno ([0-9]+)\\]", str(e))
if errno_match:
logger.warning(
logger.error(
"Failed PUT request on %r (upload): %s", path, e, exc_info=True)
errno_e = int(errno_match.group(1))
if errno_e == errno.ENOSPC: