Azure IoT common library
Dependents: STM32F746_iothub_client_sample_mqtt f767zi_mqtt iothub_client_sample_amqp iothub_client_sample_http ... more
xlogging.c
- Committer:
- Azure.IoT Build
- Date:
- 2016-07-01
- Revision:
- 6:c55b013dfc2a
- Child:
- 7:1af47e3a19b6
File content as of revision 6:c55b013dfc2a:
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. #include "azure_c_shared_utility/xlogging.h" #include "azure_c_shared_utility/consolelogger.h" static LOGGER_LOG global_log_function = consolelogger_log; void xlogging_set_log_function(LOGGER_LOG log_function) { global_log_function = log_function; } LOGGER_LOG xlogging_get_log_function(void) { return global_log_function; }