- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
#define LOGGER_0(func) Globals::Log1(func)
#define LOGGER_S(func, str) Globals::Log2(func, std::string(str))
#define LOGGER_D(func, dig) Globals::Log2(func, dig)
#define LOGGER_SD(func, str, dig) Globals::Log3(func, std::string(str), dig)
#define LOGGER_DS(func, dig, str) Globals::Log3(func, dig, std::string(str))
#define LOGGER_SS(func, str0, str1) Globals::Log3(func, std::string(str0), std::string(str1))
#define LOGGER_SSS(func, str0, str1, str2) Globals::Log4(func, std::string(str0), std::string(str1), std::string(str2))
........
#define LOGGER_S6(func, str0, str1, str2, str3, str4, str5) Globals::Log7(func, std::string(str0), std::string(str1), std::string(str2), std::string(str3), std::string(str4), std::string(str5))
.......
#define LOGGER_SSDDD(func, str0, str1, dig0, dig1, dig2) Globals::Log6(func, std::string(str0), std::string(str1), dig0, dig1, dig2)
..... // еще с десяток подобных макросов.