aboutsummaryrefslogtreecommitdiff
path: root/src/logging.h
diff options
context:
space:
mode:
authorJon Atack <jon@atack.com>2021-08-18 12:29:36 +0200
committerJon Atack <jon@atack.com>2021-08-18 19:57:15 +0200
commitb7a17444e0746c562ae97b26eba431577947b06a (patch)
treeb2995987513a07c104ebf9944da9a5ee91892dd4 /src/logging.h
parentbb9f76a7194a665effab169d228bb8cbc66ccf86 (diff)
downloadbitcoin-b7a17444e0746c562ae97b26eba431577947b06a.tar.xz
log, sync: add LOCK logging category, apply it to lock contention
Diffstat (limited to 'src/logging.h')
-rw-r--r--src/logging.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/logging.h b/src/logging.h
index 38d73863e7..53a89d28bd 100644
--- a/src/logging.h
+++ b/src/logging.h
@@ -59,6 +59,7 @@ namespace BCLog {
VALIDATION = (1 << 21),
I2P = (1 << 22),
IPC = (1 << 23),
+ LOCK = (1 << 24),
ALL = ~(uint32_t)0,
};