Newer
Older
Martin Beseda
committed
//
// Created by martin on 9/8/18.
//
#ifndef PROJECT_MESSAGE_H
#define PROJECT_MESSAGE_H
#define MSG_INFO(str) std::cout << "INFO: " << str << std::endl;
#define MSG_DEBUG(str) assert(std::cerr << "DEBUG:" << str << std::endl);
Martin Beseda
committed
#endif //PROJECT_MESSAGE_H