snake/include/log.h

11 lines
173 B
C++

#pragma once
#include <iostream>
#ifdef LOG_ENABLE
#define LOG_CONDITON(x) if (x)
#define LOG(x) std::cout << x << "\n"
#else
#define LOG(x)
#define LOG_CONDITON(x)
#endif