summaryrefslogtreecommitdiff
path: root/src/core/common/Logger.hpp
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-01-23 15:30:37 +0100
committerAndreas Stöckel <andreas@somweyr.de>2015-01-23 15:30:37 +0100
commit4aee189703a9305206094858165c67043c2e1953 (patch)
treeaba22fcdf10b7d4a387d2911371fde9e54b3a812 /src/core/common/Logger.hpp
parent31873a51b21ca8d549c172f9e773818356021a55 (diff)
Logger compiles now
Diffstat (limited to 'src/core/common/Logger.hpp')
-rw-r--r--src/core/common/Logger.hpp11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/core/common/Logger.hpp b/src/core/common/Logger.hpp
index 092bd3a..85b1bb1 100644
--- a/src/core/common/Logger.hpp
+++ b/src/core/common/Logger.hpp
@@ -594,8 +594,8 @@ public:
LoggerFork(LoggerFork &&l)
: calls(std::move(l.calls)),
messages(std::move(l.messages)),
- files(std::move(l.files)),
locations(std::move(l.locations)),
+ callbacks(std::move(l.callbacks)),
parent(std::move(l.parent)){};
/**
@@ -718,11 +718,6 @@ constexpr Severity DEFAULT_MIN_SEVERITY = Severity::DEBUG;
class ConcreteLogger : public Logger {
private:
/**
- * Current source context callback.
- */
- SourceContextCallback sourceContextCallback;
-
- /**
* Vector used to store the counts of each message type.
*/
std::vector<size_t> messageCounts;
@@ -740,7 +735,7 @@ private:
/**
* Current source context callback.
*/
- SourceContextCallback callback;
+ SourceContextCallback sourceContextCallback;
protected:
/**
@@ -765,7 +760,7 @@ public:
* @param minSeverity is the severity below which message should be
* discarded.
*/
- ConcreteLogger(Severity minSeverity = Severity::DEFAULT_MIN_SEVERITY);
+ ConcreteLogger(Severity minSeverity = DEFAULT_MIN_SEVERITY);
/**
* Returns the current cursor location.