diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-04-11 22:23:55 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-04-14 09:43:05 +0000 |
commit | 428249c5d1cc1bd019ae231ce2590eed8269b8ad (patch) | |
tree | eb4a37e1ace3891dc82d19cec8f1676779063488 /external/easylogging++/easylogging++.h | |
parent | Merge pull request #5423 (diff) | |
download | monero-428249c5d1cc1bd019ae231ce2590eed8269b8ad.tar.xz |
easylogging++: minimal stdout logging format
It's a bit of a hack, but doing it right would need a lot
of changes to the easylogging++ source.
Diffstat (limited to 'external/easylogging++/easylogging++.h')
-rw-r--r-- | external/easylogging++/easylogging++.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/external/easylogging++/easylogging++.h b/external/easylogging++/easylogging++.h index d9a2dc3d1..ff57c1dc0 100644 --- a/external/easylogging++/easylogging++.h +++ b/external/easylogging++/easylogging++.h @@ -2776,7 +2776,7 @@ class DefaultLogDispatchCallback : public LogDispatchCallback { void handle(const LogDispatchData* data); private: const LogDispatchData* m_data; - void dispatch(base::type::string_t&& logLine); + void dispatch(base::type::string_t&& rawLine, base::type::string_t&& logLine); }; #if ELPP_ASYNC_LOGGING class AsyncLogDispatchCallback : public LogDispatchCallback { |