@ -98,7 +98,8 @@ extern FILE * logfile;
time_t now = time ( NULL ) ; \
time_t now = time ( NULL ) ; \
char timestr [ 20 ] ; \
char timestr [ 20 ] ; \
strftime ( timestr , 20 , TIME_FORMAT , localtime ( & now ) ) ; \
strftime ( timestr , 20 , TIME_FORMAT , localtime ( & now ) ) ; \
fprintf ( stderr , " %s INFO: " format " \n " , timestr , # # __VA_ARGS__ ) ; } \
fprintf ( stderr , " %s INFO: " format " \n " , timestr , # # __VA_ARGS__ ) ; \
fflush ( stderr ) ; } \
while ( 0 )
while ( 0 )
# define LOGE(format, ...) \
# define LOGE(format, ...) \
@ -106,7 +107,8 @@ extern FILE * logfile;
time_t now = time ( NULL ) ; \
time_t now = time ( NULL ) ; \
char timestr [ 20 ] ; \
char timestr [ 20 ] ; \
strftime ( timestr , 20 , TIME_FORMAT , localtime ( & now ) ) ; \
strftime ( timestr , 20 , TIME_FORMAT , localtime ( & now ) ) ; \
fprintf ( stderr , " %s ERROR: " format " \n " , timestr , # # __VA_ARGS__ ) ; } \
fprintf ( stderr , " %s ERROR: " format " \n " , timestr , # # __VA_ARGS__ ) ; \
fflush ( stderr ) ; } \
while ( 0 )
while ( 0 )
# else
# else