fix logger-warn-leftovers

This commit is contained in:
Peter Bieringer 2024-07-25 15:48:24 +02:00
parent 897a679c1c
commit c046c6ae34
3 changed files with 4 additions and 4 deletions

View file

@ -61,7 +61,7 @@ def _get_application_instance(config_path: str, wsgi_errors: types.ErrorStream
if not miss and source != "default config": if not miss and source != "default config":
default_config_active = False default_config_active = False
if default_config_active: if default_config_active:
logger.warn("%s", "No config file found/readable - only default config is active") logger.warning("%s", "No config file found/readable - only default config is active")
_application_instance = Application(configuration) _application_instance = Application(configuration)
if _application_config_path != config_path: if _application_config_path != config_path:
raise ValueError("RADICALE_CONFIG must not change: %r != %r" % raise ValueError("RADICALE_CONFIG must not change: %r != %r" %

View file

@ -175,7 +175,7 @@ def run() -> None:
default_config_active = False default_config_active = False
if default_config_active: if default_config_active:
logger.warn("%s", "No config file found/readable - only default config is active") logger.warning("%s", "No config file found/readable - only default config is active")
if args_ns.verify_storage: if args_ns.verify_storage:
logger.info("Verifying storage") logger.info("Verifying storage")

View file

@ -291,7 +291,7 @@ def serve(configuration: config.Configuration,
try: try:
getaddrinfo = socket.getaddrinfo(address_port[0], address_port[1], 0, socket.SOCK_STREAM, socket.IPPROTO_TCP) getaddrinfo = socket.getaddrinfo(address_port[0], address_port[1], 0, socket.SOCK_STREAM, socket.IPPROTO_TCP)
except OSError as e: except OSError as e:
logger.warn("cannot retrieve IPv4 or IPv6 address of '%s': %s" % (format_address(address_port), e)) logger.warning("cannot retrieve IPv4 or IPv6 address of '%s': %s" % (format_address(address_port), e))
continue continue
logger.debug("getaddrinfo of '%s': %s" % (format_address(address_port), getaddrinfo)) logger.debug("getaddrinfo of '%s': %s" % (format_address(address_port), getaddrinfo))
for (address_family, socket_kind, socket_proto, socket_flags, socket_address) in getaddrinfo: for (address_family, socket_kind, socket_proto, socket_flags, socket_address) in getaddrinfo:
@ -299,7 +299,7 @@ def serve(configuration: config.Configuration,
try: try:
server = server_class(configuration, address_family, (socket_address[0], socket_address[1]), RequestHandler) server = server_class(configuration, address_family, (socket_address[0], socket_address[1]), RequestHandler)
except OSError as e: except OSError as e:
logger.warn("cannot create server socket on '%s': %s" % (format_address(socket_address), e)) logger.warning("cannot create server socket on '%s': %s" % (format_address(socket_address), e))
continue continue
servers[server.socket] = server servers[server.socket] = server
server.set_app(application) server.set_app(application)