Ethernet+BLE prototype

Dependencies:   mbed EthernetInterface mbed-rtos

include/log.h

Committer:
teruo
Date:
2014-03-27
Revision:
3:d9445b9e7163
Parent:
2:23966fe302b4

File content as of revision 3:d9445b9e7163:

#ifndef __LOG_H__
#define __LOG_H__

#include <stdio.h>

#define INFO_LOG   printf
#define ERROR_LOG  printf


#ifdef _DEBUG
    #define DEBUG_LOG  printf
#else
    #define DEBUG_LOG(x, ...) 
#endif

#endif /* __LOG_H__ */