diff --git a/mkdocs.yml b/mkdocs.yml index a2fd73c..ba42b17 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -76,6 +76,7 @@ nav: - Binding Model to Triton: binding_models.md - Binding Configuration: binding_configuration.md - Deploying in Clusters: deploying_in_clusters.md + - Triton Remote Mode: remote_triton.md - Inference Handling: - Inference Callable: inference_callable.md - Decorators: decorators.md diff --git a/pytriton/models/model.py b/pytriton/models/model.py index 63f3d49..a8f000e 100644 --- a/pytriton/models/model.py +++ b/pytriton/models/model.py @@ -300,7 +300,7 @@ def _model_proxy_handshake(self) -> None: LOGGER.error("Internal proxy backend error. It will be closed.") LOGGER.exception(exception) finally: - LOGGER.info("Closing socket") + LOGGER.debug("Closing handshake socket") socket_close_timeout_s = 0 socket.close(linger=socket_close_timeout_s)