Files
arduino/libraries/PubSubClient/tests/src/lib/trace.h
2018-08-08 08:33:26 +02:00

11 lines
204 B
C++

#ifndef trace_h
#define trace_h
#include <iostream>
#include <stdlib.h>
#define LOG(x) {std::cout << x << std::flush; }
#define TRACE(x) {if (getenv("TRACE")) { std::cout << x << std::flush; }}
#endif