diff options
author | fanquake <fanquake@gmail.com> | 2019-01-19 22:06:14 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2019-01-19 22:06:14 +0800 |
commit | f1dc6932e95fd29cbedfa5f013eca37ed91e12ed (patch) | |
tree | e09220a69e96eb2819648b234572b3c3238cc216 /src/zmq | |
parent | f55808ad6939607c6efb79e9b3604140498c6042 (diff) |
zmq: log outbound message high water mark when reusing socket
Diffstat (limited to 'src/zmq')
-rw-r--r-- | src/zmq/zmqpublishnotifier.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/zmq/zmqpublishnotifier.cpp b/src/zmq/zmqpublishnotifier.cpp index 15d4ac1b89..ba89d1401d 100644 --- a/src/zmq/zmqpublishnotifier.cpp +++ b/src/zmq/zmqpublishnotifier.cpp @@ -101,6 +101,7 @@ bool CZMQAbstractPublishNotifier::Initialize(void *pcontext) else { LogPrint(BCLog::ZMQ, "zmq: Reusing socket for address %s\n", address); + LogPrint(BCLog::ZMQ, "zmq: Outbound message high water mark for %s at %s is %d\n", type, address, outbound_message_high_water_mark); psocket = i->second->psocket; mapPublishNotifiers.insert(std::make_pair(address, this)); |