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