#ifndef MBGL_COMMON_NSLOG_LOG #define MBGL_COMMON_NSLOG_LOG #include 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