summaryrefslogtreecommitdiff
path: root/include/mbgl/platform/darwin/log_nslog.hpp
blob: 5b2ed04114894083ee0590249920b80685eb9564 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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, int64_t code, const std::string &msg);
};


}

#endif