summaryrefslogtreecommitdiff
path: root/src/Logging/DummyLogger.h
diff options
context:
space:
mode:
authorJF <jf@codingfield.com>2019-11-17 19:47:04 (GMT)
committerJF <jf@codingfield.com>2019-11-17 19:47:04 (GMT)
commit2ea27e0cdac91cd4743d9f12496bb3f911d9efa9 (patch)
treeae6488be1be14c2b83aff6e69a6e622088fb093a /src/Logging/DummyLogger.h
Initial commit
Diffstat (limited to 'src/Logging/DummyLogger.h')
-rw-r--r--src/Logging/DummyLogger.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Logging/DummyLogger.h b/src/Logging/DummyLogger.h
new file mode 100644
index 0000000..0aa7288
--- /dev/null
+++ b/src/Logging/DummyLogger.h
@@ -0,0 +1,13 @@
+#pragma once
+#include "Logger.h"
+
+namespace Pinetime {
+ namespace Logging{
+ class DummyLogger : public Logger {
+ public:
+ void Init() override {}
+ void Resume() override {}
+ };
+ }
+}
+