Vodafone Test Suite

Dependencies:   mbed-rtos mbed HTTPClient VodafoneUSBModem

LogHeader.h

Committer:
ashleymills
Date:
2014-01-29
Revision:
74:e52ac9624f7f
Parent:
53:54b2d3a0c7bf

File content as of revision 74:e52ac9624f7f:

#pragma once
#define LOGGER
#ifdef LOGGER
    #define LOG(...) { fprintf(stdout,"[LOG] "); fprintf(stdout,__VA_ARGS__); fprintf(stdout,"\r\n"); }
    #define LOGX(...) { fprintf(stdout,"[LOG] "); fprintf(stdout,__VA_ARGS__); }
#else
    #define LOG(...)
    #define LOGX(...)
#endif