1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-06-26 16:45:52 +00:00

do not display call trace

This commit is contained in:
Peter Bieringer 2024-03-13 22:19:35 +01:00
parent 0750108152
commit 7d27b4eacc

View file

@ -198,7 +198,7 @@ def run() -> None:
server.serve(configuration, shutdown_socket_out) server.serve(configuration, shutdown_socket_out)
except Exception as e: except Exception as e:
logger.critical("An exception occurred during server startup: %s", e, logger.critical("An exception occurred during server startup: %s", e,
exc_info=True) exc_info=False)
sys.exit(1) sys.exit(1)