Ethernet+BLE prototype

Dependencies:   mbed EthernetInterface mbed-rtos

include/log.h

Committer:
teruo
Date:
2014-03-31
Revision:
5:9fffeb949e5a
Parent:
3:d9445b9e7163

File content as of revision 5:9fffeb949e5a:

#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__ */