diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-09-12 11:21:01 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-09-12 11:28:01 -0400 |
commit | fae3fbd61a89c7a35bc0eda91b1df61371dc0936 (patch) | |
tree | 744f9f900921b30c0bcc146adff259b6ea778a69 /test | |
parent | 4103cc31690e5be21854a9628f57c54b880ee195 (diff) |
logging: Replace LogPrint macros with regular functions
Diffstat (limited to 'test')
-rwxr-xr-x | test/lint/lint-format-strings.py | 1 |
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)"), ] |