summaryrefslogtreecommitdiff
path: root/common/nslog_log.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/nslog_log.hpp')
-rw-r--r--common/nslog_log.hpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/common/nslog_log.hpp b/common/nslog_log.hpp
deleted file mode 100644
index d40f963036..0000000000
--- a/common/nslog_log.hpp
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef MBGL_COMMON_NSLOG_LOG
-#define MBGL_COMMON_NSLOG_LOG
-
-#include <mbgl/platform/log.hpp>
-
-namespace mbgl {
-
-class NSLogBackend : public LogBackend {
-public:
- inline ~NSLogBackend() = default;
-
- void record(EventSeverity severity, Event event, const std::string &msg);
- void record(EventSeverity severity, Event event, const char* format, ...);
- void record(EventSeverity severity, Event event, int64_t code);
- void record(EventSeverity severity, Event event, int64_t code, const std::string &msg);
-};
-
-
-}
-
-#endif