Azure IoT common library

Dependents:   STM32F746_iothub_client_sample_mqtt f767zi_mqtt iothub_client_sample_amqp iothub_client_sample_http ... more

Revision:
45:1119d0f2c4d8
Parent:
41:dc93369d5ed4
Child:
48:81866008bba4
--- a/xlogging.c	Fri May 04 13:26:26 2018 -0700
+++ b/xlogging.c	Mon Jun 11 15:41:10 2018 -0700
@@ -12,31 +12,31 @@
 
 void consolelogger_log(LOG_CATEGORY log_category, const char* file, const char* func, 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);
+    time_t t = time(NULL);
 
-	switch (log_category)
-	{
-	case AZ_LOG_INFO:
-		(void)printf("Info: ");
-		break;
-	case AZ_LOG_ERROR:
-		(void)printf("Error: Time:%.24s File:%s Func:%s Line:%d ", ctime(&t), file, func, line);
-		break;
-	default:
-		break;
-	}
+    switch (log_category)
+    {
+    case AZ_LOG_INFO:
+        (void)printf("Info: ");
+        break;
+    case AZ_LOG_ERROR:
+        (void)printf("Error: Time:%.24s File:%s Func:%s Line:%d ", ctime(&t), file, func, line);
+        break;
+    default:
+        break;
+    }
 
-	(void)vprintf(format, args);
-	va_end(args);
+    (void)vprintf(format, args);
+    va_end(args);
 
-	(void)log_category;
-	if (options & LOG_LINE)
-	{
-		(void)printf("\r\n");
-	}
+    (void)log_category;
+    if (options & LOG_LINE)
+    {
+        (void)printf("\r\n");
+    }
 }
 #endif