Skip to content
Snippets Groups Projects
message.h 378 B
Newer Older
//
// Created by martin on 9/8/18.
//

#ifndef PROJECT_MESSAGE_H
#define PROJECT_MESSAGE_H

#include <cassert>

#define COUT_INFO(inp) std::cout << std::flush << "INFO: " << inp << std::flush
#define COUT_DEBUG(inp) assert(std::cerr << std::flush << "DEBUG: " << inp << std::flush)
#else
#define COUT_DEBUG(inp)
#endif // L4N_DEBUG