Newer
Older
esp8266-door / lib / pubsubclient / tests / src / lib / trace.h
@zhang zhang on 18 Oct 2018 204 bytes initial version
#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