mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
101f73bb6d
d207207
[logging] add lint-logs.sh to check for newline termination. (John Newbery)5c21e6c
[logging] Comment all continuing logs. (John Newbery) Pull request description: Check that all calls to LogPrintf() are terminated by a newline, except those that are explicitly marked as 'continued' logs. Tree-SHA512: fe5162b2b2df1e8a4c807da87584fa9af97a6b8377e4090fe0caa136d90bf29a487a123cde94569bdce7101fee3478196d99aa13f1212e24bfe5f41c773604fc
26 lines
745 B
Bash
Executable File
26 lines
745 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (c) 2018 The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
#
|
|
# Check that all logs are terminated with '\n'
|
|
#
|
|
# Some logs are continued over multiple lines. They should be explicitly
|
|
# commented with \* Continued *\
|
|
#
|
|
# There are some instances of LogPrintf() in comments. Those can be
|
|
# ignored
|
|
|
|
|
|
UNTERMINATED_LOGS=$(git grep "LogPrintf(" -- "*.cpp" | \
|
|
grep -v '\\n"' | \
|
|
grep -v "/\* Continued \*/" | \
|
|
grep -v "LogPrintf()")
|
|
if [[ ${UNTERMINATED_LOGS} != "" ]]; then
|
|
echo "All calls to LogPrintf() should be terminated with \\n"
|
|
echo
|
|
echo "${UNTERMINATED_LOGS}"
|
|
exit 1
|
|
fi
|