From 25cb7be230a49c9b6484c95d71ec0ba2dfc0c8cb Mon Sep 17 00:00:00 2001 From: Mauro Carvalho Chehab <mchehab@kernel.org> Date: Thu, 14 Mar 2024 09:04:15 +0100 Subject: [PATCH] scripts/xls_to_doc.py: reduce verbosity for writing message Such log is usually unneeded. Drop it. Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> --- scripts/xls_to_doc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/xls_to_doc.py b/scripts/xls_to_doc.py index 0d6ad0e0b..03feae583 100755 --- a/scripts/xls_to_doc.py +++ b/scripts/xls_to_doc.py @@ -348,7 +348,7 @@ class FillTests(TestList): # Write changes try: - if self.verbose: + if self.verbose > 1: print(f"Writing to {sourcename}") with open(sourcename, 'w', encoding='utf8') as out_fp: -- GitLab