Skip to content

Commit

Permalink
fix loglevel
Browse files Browse the repository at this point in the history
  • Loading branch information
pbiering committed Feb 11, 2025
1 parent 67bbc9a commit a62da71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radicale/app/proppatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def do_PROPPATCH(self, environ: types.WSGIEnviron, base_prefix: str,
# 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:
Expand Down

0 comments on commit a62da71

Please sign in to comment.