Azure IoT common library

Fork of azure_c_shared_utility by Azure IoT

Revision:
18:6d8a413a4d9a
Parent:
11:77df6d7e65ae
Child:
19:2e0811512ceb
--- a/consolelogger.c	Sun Jan 08 11:12:54 2017 -0800
+++ b/consolelogger.c	Fri Jan 13 18:41:15 2017 -0800
@@ -18,10 +18,10 @@
     
     switch (log_category)
     {
-    case LOG_INFO:
+    case AZ_LOG_INFO:
         (void)printf("Info: ");
         break;
-    case LOG_ERROR:
+    case AZ_LOG_ERROR:
         (void)printf("Error: Time:%.24s File:%s Func:%s Line:%d ", ctime(&t), file, func, line);
         break;
     default: