diff --git a/radicale/app/put.py b/radicale/app/put.py index 5f916fe0..08f1bb0a 100644 --- a/radicale/app/put.py +++ b/radicale/app/put.py @@ -365,7 +365,7 @@ class ApplicationPartPut(ApplicationBase): errno_match = re.search("\\[Errno ([0-9]+)\\]", str(e)) if errno_match: 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=False) errno_e = int(errno_match.group(1)) if errno_e == errno.ENOSPC: return httputils.INSUFFICIENT_STORAGE