Vodafone Test Suite

Dependencies:   mbed-rtos mbed HTTPClient VodafoneUSBModem

LogHeader.h

Committer:
donatien
Date:
2012-09-14
Revision:
41:9d802bf152fa
Parent:
14:d7bf58146337
Child:
53:54b2d3a0c7bf

File content as of revision 41:9d802bf152fa:

#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