1 #ifndef DATA_TRACER_LOG_H
2 #define DATA_TRACER_LOG_H
6 #define log_err std::cerr << "ERROR: " << __func__ << ": "
7 #define log_info std::cout << "INFO: " << __func__ << ": "
9 #define log_debug std::cout << "DEBUG: " << __func__ << ": "
11 #define log_debug if (0) std::cout