Azure IoT common library
Dependents: STM32F746_iothub_client_sample_mqtt f767zi_mqtt iothub_client_sample_amqp iothub_client_sample_http ... more
consolelogger.c@7:1af47e3a19b6, 2016-07-29 (annotated)
- Committer:
- AzureIoTClient
- Date:
- Fri Jul 29 16:01:07 2016 -0700
- Revision:
- 7:1af47e3a19b6
- Parent:
- 6:c55b013dfc2a
- Child:
- 8:3db46d1e5471
1.0.10
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Azure.IoT Build | 6:c55b013dfc2a | 1 | // Copyright (c) Microsoft. All rights reserved. |
Azure.IoT Build | 6:c55b013dfc2a | 2 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. |
Azure.IoT Build | 6:c55b013dfc2a | 3 | |
Azure.IoT Build | 6:c55b013dfc2a | 4 | #include <stdlib.h> |
Azure.IoT Build | 6:c55b013dfc2a | 5 | #ifdef _CRTDBG_MAP_ALLOC |
Azure.IoT Build | 6:c55b013dfc2a | 6 | #include <crtdbg.h> |
Azure.IoT Build | 6:c55b013dfc2a | 7 | #endif |
Azure.IoT Build | 6:c55b013dfc2a | 8 | #include <stdarg.h> |
Azure.IoT Build | 6:c55b013dfc2a | 9 | #include <stdio.h> |
Azure.IoT Build | 6:c55b013dfc2a | 10 | #include "azure_c_shared_utility/xlogging.h" |
Azure.IoT Build | 6:c55b013dfc2a | 11 | |
AzureIoTClient | 7:1af47e3a19b6 | 12 | #if defined _MSC_VER |
AzureIoTClient | 7:1af47e3a19b6 | 13 | #define FUNC_NAME __FUNCDNAME__ |
AzureIoTClient | 7:1af47e3a19b6 | 14 | #else |
AzureIoTClient | 7:1af47e3a19b6 | 15 | #define FUNC_NAME __func__ |
AzureIoTClient | 7:1af47e3a19b6 | 16 | #endif |
AzureIoTClient | 7:1af47e3a19b6 | 17 | |
Azure.IoT Build | 6:c55b013dfc2a | 18 | void consolelogger_log(LOG_CATEGORY log_category,unsigned int options, const char* format, ...) |
Azure.IoT Build | 6:c55b013dfc2a | 19 | { |
Azure.IoT Build | 6:c55b013dfc2a | 20 | va_list args; |
Azure.IoT Build | 6:c55b013dfc2a | 21 | va_start(args, format); |
AzureIoTClient | 7:1af47e3a19b6 | 22 | |
AzureIoTClient | 7:1af47e3a19b6 | 23 | time_t t = time(NULL); |
AzureIoTClient | 7:1af47e3a19b6 | 24 | |
AzureIoTClient | 7:1af47e3a19b6 | 25 | switch (log_category) |
AzureIoTClient | 7:1af47e3a19b6 | 26 | { |
AzureIoTClient | 7:1af47e3a19b6 | 27 | case LOG_INFO: |
AzureIoTClient | 7:1af47e3a19b6 | 28 | (void)printf("Info: "); |
AzureIoTClient | 7:1af47e3a19b6 | 29 | break; |
AzureIoTClient | 7:1af47e3a19b6 | 30 | case LOG_ERROR: |
AzureIoTClient | 7:1af47e3a19b6 | 31 | (void)printf("Error: Time:%.24s File:%s Func:%s Line:%d ", ctime(&t), __FILE__, FUNC_NAME, __LINE__); |
AzureIoTClient | 7:1af47e3a19b6 | 32 | break; |
AzureIoTClient | 7:1af47e3a19b6 | 33 | default: |
AzureIoTClient | 7:1af47e3a19b6 | 34 | break; |
AzureIoTClient | 7:1af47e3a19b6 | 35 | } |
AzureIoTClient | 7:1af47e3a19b6 | 36 | |
Azure.IoT Build | 6:c55b013dfc2a | 37 | (void)vprintf(format, args); |
Azure.IoT Build | 6:c55b013dfc2a | 38 | va_end(args); |
Azure.IoT Build | 6:c55b013dfc2a | 39 | |
Azure.IoT Build | 6:c55b013dfc2a | 40 | (void)log_category; |
Azure.IoT Build | 6:c55b013dfc2a | 41 | if (options & LOG_LINE) |
Azure.IoT Build | 6:c55b013dfc2a | 42 | { |
Azure.IoT Build | 6:c55b013dfc2a | 43 | (void)printf("\r\n"); |
Azure.IoT Build | 6:c55b013dfc2a | 44 | } |
Azure.IoT Build | 6:c55b013dfc2a | 45 | } |