From f4aaf095a39287756ef3aa0085d17cbaa55721d7 Mon Sep 17 00:00:00 2001 From: allegroai Date: Sat, 8 Oct 2022 02:10:46 +0300 Subject: [PATCH] Add triton logging control --- clearml_serving/engines/triton/triton_helper.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/clearml_serving/engines/triton/triton_helper.py b/clearml_serving/engines/triton/triton_helper.py index 4b9da1b..533d06a 100644 --- a/clearml_serving/engines/triton/triton_helper.py +++ b/clearml_serving/engines/triton/triton_helper.py @@ -489,6 +489,9 @@ def main(): help=' The number of threads used to accelerate copies and other' 'operations required to manage input and output tensor contents.' 'Default is 0') + parser.add_argument( + '--t-log-verbose', type=str, + help=' Triton server logging verbosity (default disabled)') args = parser.parse_args()