Azure IoT common library
Fork of azure_c_shared_utility by
Diff: consolelogger.c
- Revision:
- 8:3db46d1e5471
- Parent:
- 7:1af47e3a19b6
- Child:
- 11:77df6d7e65ae
--- a/consolelogger.c Fri Jul 29 16:01:07 2016 -0700 +++ b/consolelogger.c Fri Aug 12 10:04:46 2016 -0700 @@ -15,10 +15,10 @@ #define FUNC_NAME __func__ #endif -void consolelogger_log(LOG_CATEGORY log_category,unsigned int options, const char* format, ...) +void consolelogger_log(LOG_CATEGORY log_category, const char* file, const char* func, const int line, unsigned int options, const char* format, ...) { - va_list args; - va_start(args, format); + va_list args; + va_start(args, format); time_t t = time(NULL); @@ -28,7 +28,7 @@ (void)printf("Info: "); break; case LOG_ERROR: - (void)printf("Error: Time:%.24s File:%s Func:%s Line:%d ", ctime(&t), __FILE__, FUNC_NAME, __LINE__); + (void)printf("Error: Time:%.24s File:%s Func:%s Line:%d ", ctime(&t), file, func, line); break; default: break;