mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-09-12 05:32:22 +02:00
Add missing includes of logging.h in preparation for the next commit, switching to util/log.h. Also removes some unnecessary util/check.h includes that CI complains about.
18 lines
419 B
C++
18 lines
419 B
C++
// Copyright (c) 2014-present The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <zmq/zmqutil.h>
|
|
|
|
#include <logging.h>
|
|
|
|
#include <zmq.h>
|
|
|
|
#include <cerrno>
|
|
#include <string>
|
|
|
|
void zmqError(const std::string& str)
|
|
{
|
|
LogDebug(BCLog::ZMQ, "Error: %s, msg: %s\n", str, zmq_strerror(errno));
|
|
}
|