-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathETWLogger.cpp
41 lines (36 loc) · 973 Bytes
/
ETWLogger.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include "ETWLogger.h"
#include "etw.h"
ETWLogger::ETWLogger() {
m_registration_handle = 0;
auto status = EventRegister(
&ProviderGuid, // GUID that identifies the provider
nullptr, // Callback not used
nullptr, // Context noot used
&m_registration_handle // Used when calling EventWrite and EventUnregister
);
}
void ETWLogger::log(const std::string& msg) {
EVENT_DATA_DESCRIPTOR descr;
EventDataDescCreate(&descr, msg.c_str(), static_cast<ULONG>(msg.size()));
auto status = EventWrite(
m_registration_handle,
&LogEvent,
1,
&descr
);
if (status != 0) DebugBreak();
}
void ETWLogger::err(const std::string& msg) {
EVENT_DATA_DESCRIPTOR descr;
EventDataDescCreate(&descr, msg.c_str(), static_cast<ULONG>(msg.size()));
auto status = EventWrite(
m_registration_handle,
&ErrEvent,
1,
&descr
);
if (status != 0) DebugBreak();
}
ETWLogger::~ETWLogger() {
EventUnregister(m_registration_handle);
}