mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
25 lines
599 B
C++
25 lines
599 B
C++
// Copyright (c) 2018-2022 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>
|
|
|
|
CBatchedLogger::CBatchedLogger(BCLog::LogFlags _category, const std::string& _header) :
|
|
accept(LogAcceptCategory(_category)), header(_header)
|
|
{
|
|
}
|
|
|
|
CBatchedLogger::~CBatchedLogger()
|
|
{
|
|
Flush();
|
|
}
|
|
|
|
void CBatchedLogger::Flush()
|
|
{
|
|
if (!accept || msg.empty()) {
|
|
return;
|
|
}
|
|
LogInstance().LogPrintStr(strprintf("%s:\n%s", header, msg));
|
|
msg.clear();
|
|
}
|