From f8aee072515ff1cab4aa5b8eba7cd40282890c1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Tue, 27 Dec 2022 01:58:47 +0100 Subject: [PATCH] fix: Remove more print --- website/web/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/web/__init__.py b/website/web/__init__.py index f91aebf..bfd6a6a 100644 --- a/website/web/__init__.py +++ b/website/web/__init__.py @@ -678,7 +678,7 @@ def tree(tree_uuid: str, node_uuid: Optional[str]=None): if hostnode: hostnode_to_highlight = hostnode.uuid except IndexError as e: - print(e) + logging.info(f'Invalid uuid ({e}): {node_uuid}') pass if cache.error: flash(cache.error, 'warning')