fix loglevel

This commit is contained in:
Peter Bieringer 2025-02-11 16:44:30 +01:00
parent 67bbc9a31b
commit a62da71aa2

View file

@ -114,7 +114,7 @@ class ApplicationPartProppatch(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 PROPPATCH request on %r: %s", path, e, exc_info=True)
errno_e = int(errno_match.group(1))
if errno_e == errno.ENOSPC: