arc lint --everything
make check
./bitcoind
Verify there is a wallet name attached to log files right after the `init message: Loading Wallet ...` line(s) like so:
[default wallet] nFileVersion = 200900
Add the following lines to anyfile:
LogPrint("Hello World");
LogPrintf("Hello World");
WalletLogPrint("Hello World");
WalletLogPrintf("Hello World");
After running the linter, there should be 4 different error messages with the following error message:
(LOGS1) Missing a newline at the end of the log message.
If this is deliberate, please use the `(Wallet)LogPrint*ToBeContinued()`
method instead.