Nathanaël Semhoun / Mbed OS mdot_commonsense

Dependencies:   libmDot-mbed5

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Logging.h Source File

Logging.h

00001 #ifndef __LOGGING__
00002 #define __LOGGING__
00003 
00004 #define DEBUG
00005 
00006 #ifdef DEBUG
00007 #define LOG_DEBUG(...) { printf("[%s]--DEBUG-- ", __FILE__); printf(__VA_ARGS__); printf("\r\n"); }
00008 #define LOG_ERROR(...) { printf("[%s]--ERROR-- ", __FILE__); printf(__VA_ARGS__); printf("\r\n"); }
00009 #else
00010 #define LOG_DEBUG(...) {}
00011 #define LOG_ERROR(...) { printf("--ERROR-- "); printf(__VA_ARGS__); printf("\r\n"); }
00012 #endif
00013 
00014 
00015 #endif