aboutsummaryrefslogtreecommitdiff
path: root/external/easylogging++/easylogging++.h
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2019-01-06 20:38:10 +0200
committerRiccardo Spagni <ric@spagni.net>2019-01-06 20:38:10 +0200
commit3ce797738929ec9651e83c76f7e5aa83bc2fb50d (patch)
treea2225d3caab22ce305165d0ea971d0e6183f055a /external/easylogging++/easylogging++.h
parentMerge pull request #4949 (diff)
parenteasylogging++: check allowed categories before logging (diff)
downloadmonero-3ce797738929ec9651e83c76f7e5aa83bc2fb50d.tar.xz
Merge pull request #4950
68f045de easylogging++: check allowed categories before logging (moneromooo-monero)
Diffstat (limited to 'external/easylogging++/easylogging++.h')
-rw-r--r--external/easylogging++/easylogging++.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/external/easylogging++/easylogging++.h b/external/easylogging++/easylogging++.h
index 1e27f62a6..d9a2dc3d1 100644
--- a/external/easylogging++/easylogging++.h
+++ b/external/easylogging++/easylogging++.h
@@ -3290,6 +3290,7 @@ class Writer : base::NoCopy {
Writer& construct(Logger* logger, bool needLock = true);
Writer& construct(int count, const char* loggerIds, ...);
+ Writer& construct(const char *loggerId);
protected:
LogMessage* m_msg;
Level m_level;
@@ -3305,6 +3306,7 @@ class Writer : base::NoCopy {
friend class el::Helpers;
void initializeLogger(const std::string& loggerId, bool lookup = true, bool needLock = true);
+ void initializeLogger(Logger *logger, bool needLock = true);
void processDispatch();
void triggerDispatch(void);
};