From eb8aab759fb15824a5dd3004e689d0eb5b884a32 Mon Sep 17 00:00:00 2001 From: Jon Atack Date: Wed, 25 May 2022 18:26:54 +0200 Subject: logging: add LogPrintfCategory to log unconditionally with category prefixing the output with the passed category name. - add documentation - add a unit test - update lint-logs.py - update lint-format-strings.py --- test/lint/lint-logs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/lint/lint-logs.py') diff --git a/test/lint/lint-logs.py b/test/lint/lint-logs.py index de53729b4e..aaf697467d 100755 --- a/test/lint/lint-logs.py +++ b/test/lint/lint-logs.py @@ -16,12 +16,12 @@ from subprocess import check_output def main(): - logs_list = check_output(["git", "grep", "--extended-regexp", r"(LogPrintLevel|LogPrintf?)\(", "--", "*.cpp"], universal_newlines=True, encoding="utf8").splitlines() + logs_list = check_output(["git", "grep", "--extended-regexp", r"(LogPrintLevel|LogPrintfCategory|LogPrintf?)\(", "--", "*.cpp"], universal_newlines=True, encoding="utf8").splitlines() unterminated_logs = [line for line in logs_list if not re.search(r'(\\n"|/\* Continued \*/)', line)] if unterminated_logs != []: - print("All calls to LogPrintf(), LogPrint(), LogPrintLevel(), and WalletLogPrintf() should be terminated with \"\\n\".") + print("All calls to LogPrintf(), LogPrintfCategory(), LogPrint(), LogPrintLevel(), and WalletLogPrintf() should be terminated with \"\\n\".") print("") for line in unterminated_logs: -- cgit v1.2.3