xref: /nrf52832-nimble/rt-thread/components/net/at/include/at_log.h (revision 104654410c56c573564690304ae786df310c91fc)
1 /*
2  * Copyright (c) 2006-2018, RT-Thread Development Team
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Change Logs:
7  * Date           Author       Notes
8  * 2018-10-12     armink       first version
9  */
10 
11 /*
12  * NOTE: DO NOT include this file on the header file.
13  */
14 
15 #define DBG_ENABLE
16 #define DBG_COLOR
17 
18 #ifndef LOG_TAG
19 #define DBG_SECTION_NAME               "at"
20 #else
21 #define DBG_SECTION_NAME               LOG_TAG
22 #endif /* LOG_TAG */
23 
24 #ifdef AT_DEBUG
25 #define DBG_LEVEL                      DBG_LOG
26 #else
27 #define DBG_LEVEL                      DBG_INFO
28 #endif /* AT_DEBUG */
29 
30 #include <rtdbg.h>
31