Azure IoT common library
Fork of azure_c_shared_utility by
consolelogger.c@8:3db46d1e5471, 2016-08-12 (annotated)
- Committer:
- AzureIoTClient
- Date:
- Fri Aug 12 10:04:46 2016 -0700
- Revision:
- 8:3db46d1e5471
- Parent:
- 7:1af47e3a19b6
- Child:
- 11:77df6d7e65ae
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 | |
AzureIoTClient | 8:3db46d1e5471 | 18 | void consolelogger_log(LOG_CATEGORY log_category, const char* file, const char* func, const int line, unsigned int options, const char* format, ...) |
Azure.IoT Build | 6:c55b013dfc2a | 19 | { |
AzureIoTClient | 8:3db46d1e5471 | 20 | va_list args; |
AzureIoTClient | 8:3db46d1e5471 | 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 | 8:3db46d1e5471 | 31 | (void)printf("Error: Time:%.24s File:%s Func:%s Line:%d ", ctime(&t), file, func, 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 | } |