aboutsummaryrefslogtreecommitdiff
path: root/test/lint/lint-format-strings.py
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2018-09-12 11:21:01 -0400
committerMarcoFalke <falke.marco@gmail.com>2018-09-12 11:28:01 -0400
commitfae3fbd61a89c7a35bc0eda91b1df61371dc0936 (patch)
tree744f9f900921b30c0bcc146adff259b6ea778a69 /test/lint/lint-format-strings.py
parent4103cc31690e5be21854a9628f57c54b880ee195 (diff)
downloadbitcoin-fae3fbd61a89c7a35bc0eda91b1df61371dc0936.tar.xz
logging: Replace LogPrint macros with regular functions
Diffstat (limited to 'test/lint/lint-format-strings.py')
-rwxr-xr-xtest/lint/lint-format-strings.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/lint/lint-format-strings.py b/test/lint/lint-format-strings.py
index 60389176c9..2fb35fd8ca 100755
--- a/test/lint/lint-format-strings.py
+++ b/test/lint/lint-format-strings.py
@@ -20,6 +20,7 @@ FALSE_POSITIVES = [
("src/util.cpp", "strprintf(COPYRIGHT_HOLDERS, COPYRIGHT_HOLDERS_SUBSTITUTION)"),
("src/wallet/wallet.h", "WalletLogPrintf(std::string fmt, Params... parameters)"),
("src/wallet/wallet.h", "LogPrintf((\"%s \" + fmt).c_str(), GetDisplayName(), parameters...)"),
+ ("src/logging.h", "LogPrintf(const char* fmt, const Args&... args)"),
]