mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-06 22:57:36 +03:00
change loglevel
This commit is contained in:
parent
803763729a
commit
fde0ecb9b2
1 changed files with 1 additions and 1 deletions
|
@ -269,7 +269,7 @@ class ApplicationPartPut(ApplicationBase):
|
||||||
# return better matching HTTP result in case errno is provided and catched
|
# return better matching HTTP result in case errno is provided and catched
|
||||||
errno_match = re.search("\\[Errno ([0-9]+)\\]", str(e))
|
errno_match = re.search("\\[Errno ([0-9]+)\\]", str(e))
|
||||||
if errno_match:
|
if errno_match:
|
||||||
logger.warning(
|
logger.error(
|
||||||
"Failed PUT request on %r (upload): %s", path, e, exc_info=True)
|
"Failed PUT request on %r (upload): %s", path, e, exc_info=True)
|
||||||
errno_e = int(errno_match.group(1))
|
errno_e = int(errno_match.group(1))
|
||||||
if errno_e == errno.ENOSPC:
|
if errno_e == errno.ENOSPC:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue