mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
easylogging++: split strings manually
Avoids cmake skullduggery
This commit is contained in:
parent
faf5805fc0
commit
614d6b5714
1 changed files with 13 additions and 2 deletions
15
external/easylogging++/easylogging++.cc
vendored
15
external/easylogging++/easylogging++.cc
vendored
|
@ -18,7 +18,6 @@
|
|||
#include "easylogging++.h"
|
||||
|
||||
#include <unistd.h>
|
||||
#include <boost/algorithm/string.hpp>
|
||||
|
||||
#if defined(AUTO_INITIALIZE_EASYLOGGINGPP)
|
||||
INITIALIZE_EASYLOGGINGPP
|
||||
|
@ -2438,7 +2437,19 @@ void DefaultLogDispatchCallback::handle(const LogDispatchData* data) {
|
|||
if (strchr(msg.c_str(), '\n'))
|
||||
{
|
||||
std::vector<std::string> v;
|
||||
boost::split(v, msg, boost::is_any_of("\n"));
|
||||
const char *s = msg.c_str();
|
||||
while (true)
|
||||
{
|
||||
const char *ptr = strchr(s, '\n');
|
||||
if (!ptr)
|
||||
{
|
||||
if (*s)
|
||||
v.push_back(s);
|
||||
break;
|
||||
}
|
||||
v.push_back(std::string(s, ptr - s));
|
||||
s = ptr + 1;
|
||||
}
|
||||
for (const std::string &s: v)
|
||||
{
|
||||
LogMessage msgline(logmsg->level(), logmsg->color(), logmsg->file(), logmsg->line(), logmsg->func(), logmsg->verboseLevel(), logmsg->logger(), &s);
|
||||
|
|
Loading…
Reference in a new issue