diff options
Diffstat (limited to 'src/emu/logmacro.h')
-rw-r--r-- | src/emu/logmacro.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/emu/logmacro.h b/src/emu/logmacro.h new file mode 100644 index 00000000000..0f7860aec57 --- /dev/null +++ b/src/emu/logmacro.h @@ -0,0 +1,22 @@ +// license:BSD-3-Clause +// copyright-holders:Vas Crabb +#if defined(MAME_EMU_LOGMACRO_H) || !defined(__EMU_H__) +#error This file should only be included once per compilation unit after all other headers +#endif +#define MAME_EMU_LOGMACRO_H + +#ifndef VERBOSE +#define VERBOSE 0 +#endif + +#ifndef LOG_OUTPUT_FUNC +#define LOG_OUTPUT_FUNC logerror +#endif + +#ifndef LOG_GENERAL +#define LOG_GENERAL (1U << 0) +#endif + +#define LOGMASKED(mask, ...) do { if (VERBOSE & (mask)) (LOG_OUTPUT_FUNC)(__VA_ARGS__); } while (false) + +#define LOG(...) LOGMASKED(LOG_GENERAL, __VA_ARGS__) |