#include "zoslogger.hpp" #include #include #include #include iflytop::zmutex glog_mutex; extern "C" { void zos_loggger_init() { glog_mutex.init(); } void zos_log(const char* fmt, ...) { if (g_enable_log) { va_list args; va_start(args, fmt); vprintf(fmt, args); va_end(args); } } }