mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-03-17 02:50:38 +01:00
Add missing newlines to LogPrint debug logging
The linter only checked `LogPrintf`, not `LogPrint`. Fix the remaining cases.
This commit is contained in:
@@ -110,9 +110,9 @@ void AddTimeData(const CNetAddr& ip, int64_t nOffsetSample)
|
||||
|
||||
if (LogAcceptCategory(BCLog::NET)) {
|
||||
for (int64_t n : vSorted) {
|
||||
LogPrint(BCLog::NET, "%+d ", n);
|
||||
LogPrint(BCLog::NET, "%+d ", n); /* Continued */
|
||||
}
|
||||
LogPrint(BCLog::NET, "| ");
|
||||
LogPrint(BCLog::NET, "| "); /* Continued */
|
||||
|
||||
LogPrint(BCLog::NET, "nTimeOffset = %+d (%+d minutes)\n", nTimeOffset, nTimeOffset/60);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user