summaryrefslogtreecommitdiff
path: root/common/nslog_log.hpp
blob: 9f2f3aee7b785247066d466c9e154071398d68ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef LLMR_COMMON_NSLOG_LOG
#define LLMR_COMMON_NSLOG_LOG

#include <llmr/platform/log.hpp>

namespace llmr {

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