dash/src/batchedlogger.cpp

26 lines
522 B
C++
Raw Normal View History

2018-09-14 13:59:02 +02:00
// 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& _header) :
header(_header)
{
}
CBatchedLogger::~CBatchedLogger()
{
Flush();
}
void CBatchedLogger::Flush()
{
if (msg.empty()) {
return;
}
LogPrintStr(strprintf("%s:\n%s", header, msg));
msg.clear();
}