Explorar el Código

Improve log message

Unrud hace 5 años
padre
commit
18f21e26d5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      radicale/server.py

+ 1 - 1
radicale/server.py

@@ -97,7 +97,7 @@ class ParallelHTTPServer(socketserver.ThreadingMixIn,
 
     def handle_error(self, request, client_address):
         if issubclass(sys.exc_info()[0], socket.timeout):
-            logger.info("client timed out", exc_info=True)
+            logger.info("Client timed out", exc_info=True)
         else:
             logger.error("An exception occurred during request: %s",
                          sys.exc_info()[1], exc_info=True)