1
0
mirror of https://github.com/momo5502/hypervisor.git synced 2025-07-04 10:11:51 +00:00
Files
hypervisor/src/driver/logging.hpp
2022-12-24 08:46:20 +01:00

8 lines
164 B
C++

#pragma once
#ifdef NDEBUG__
#define debug_log(...)
#else
#define debug_log(...) DbgPrintEx(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, "[MOMO] " __VA_ARGS__)
#endif