================ @@ -681,13 +681,14 @@ async def main() -> None: file_name_re = re.compile("|".join(args.files)) files = {f for f in files if file_name_re.search(f)} - print( - f"Running clang-tidy in {max_task} threads for", - len(files), - "files out of", - number_files_in_database, - "in compilation database ...", - ) + if not args.quiet: + print( + f"Running clang-tidy in {max_task} threads for", + len(files), + "files out of", + number_files_in_database, + "in compilation database ...", ---------------- EugeneZelenko wrote:
Why not just use f-string with concatination? https://github.com/llvm/llvm-project/pull/154416 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits