mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 04:52:59 +01:00
b87821047c
* Add support for log category to CBatchedLogger * Use "llmq" logging category in LLMQ code * Use "chainlocks" logging category in ChainLocks code * Log errors without logging category
26 lines
609 B
C++
26 lines
609 B
C++
// Copyright (c) 2018 The Dash Core developers
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include "batchedlogger.h"
|
|
#include "util.h"
|
|
|
|
CBatchedLogger::CBatchedLogger(const std::string& _category, const std::string& _header) :
|
|
accept(LogAcceptCategory(_category.c_str())), header(_header)
|
|
{
|
|
}
|
|
|
|
CBatchedLogger::~CBatchedLogger()
|
|
{
|
|
Flush();
|
|
}
|
|
|
|
void CBatchedLogger::Flush()
|
|
{
|
|
if (!accept || msg.empty()) {
|
|
return;
|
|
}
|
|
LogPrintStr(strprintf("%s:\n%s", header, msg));
|
|
msg.clear();
|
|
}
|