aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2024-03-12 18:43:13 +0000
committerfanquake <fanquake@gmail.com>2024-03-12 18:44:39 +0000
commit1105aa46dd1008c556b8c435f1efcb9be09a1644 (patch)
treec6cff2cffcf60f098c27fe4766e092ac6e6027e7 /src
parentbde3db40f6d5bd5ad499cd9b9c6e8352e713de55 (diff)
parentd0e6564240857994db53d06f66ea09da0edbaf0f (diff)
downloadbitcoin-1105aa46dd1008c556b8c435f1efcb9be09a1644.tar.xz
Merge bitcoin/bitcoin#29633: log: Remove error() reference
d0e6564240857994db53d06f66ea09da0edbaf0f log: Remove error() reference (Fabian Jahr) Pull request description: Mini-followup to #29236 that was just merged. Removes a reference to `error()` that was missed in a comment. ACKs for top commit: ryanofsky: Code review ACK d0e6564240857994db53d06f66ea09da0edbaf0f. Just dropped LogPrintf reference since last review stickies-v: ACK d0e6564240857994db53d06f66ea09da0edbaf0f Empact: ACK https://github.com/bitcoin/bitcoin/pull/29633/commits/d0e6564240857994db53d06f66ea09da0edbaf0f Tree-SHA512: 8abe4895951013c2ceca9a57743aacabaf8af831d07eee9ae8372c121c16e88b7226f0e537200c3464792e19ac7e03b57ba0be31f43add8802753972b0aefc48
Diffstat (limited to 'src')
-rw-r--r--src/logging.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/logging.h b/src/logging.h
index eef70dd20f..2d358a52f1 100644
--- a/src/logging.h
+++ b/src/logging.h
@@ -215,7 +215,7 @@ static inline bool LogAcceptCategory(BCLog::LogFlags category, BCLog::Level leve
/** Return true if str parses as a log category and set the flag */
bool GetLogCategory(BCLog::LogFlags& flag, const std::string& str);
-// Be conservative when using LogPrintf/error or other things which
+// Be conservative when using functions that
// unconditionally log to debug.log! It should not be the case that an inbound
// peer can fill up a user's disk with debug.log entries.