Newer
Older
Martin Beseda
committed
//
// Created by martin on 9/8/18.
//
#ifndef PROJECT_MESSAGE_H
#define PROJECT_MESSAGE_H
#define COUT_INFO(inp) std::cout << std::flush << "INFO: " << inp << std::flush
Martin Beseda
committed
#ifdef L4N_DEBUG
#define COUT_DEBUG(inp) assert(std::cerr << std::flush << "DEBUG: " << inp << std::flush)
Martin Beseda
committed
#else
#define COUT_DEBUG(inp)
#endif // L4N_DEBUG
Martin Beseda
committed
#endif //PROJECT_MESSAGE_H