/
githubmirror
/
bitcoin
Обзор
Документация
Войти
/
githubmirror
/
bitcoin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/zmq/zmqutil.cpp
17 строк
420 B
Anthony Towns
logging: use util/log.h where possible
15 май 2026, 20:36
15 май 2026, 20:36
02b2c41
Код
Авторство
О чём код?
// 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 <util/log.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)); }