355974aef294b4302e5a3cabec0bbc00b354a8d6
[platform/core/connectivity/smartcard-service.git] / common / include / Debug.h
1 /*
2  * Copyright (c) 2012, 2013 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef DEBUG_H_
18 #define DEBUG_H_
19
20 /* standard library header */
21 #include <iostream>
22
23 /* SLP library header */
24 #include "dlog.h"
25
26 /* local header */
27
28 #define COLOR_BLACK     "\033[0;30m"
29 #define COLOR_RED       "\033[0;31m"
30 #define COLOR_GREEN     "\033[0;32m"
31 #define COLOR_BROWN     "\033[0;33m"
32 #define COLOR_BLUE      "\033[0;34m"
33 #define COLOR_PURPLE    "\033[0;35m"
34 #define COLOR_CYAN      "\033[0;36m"
35 #define COLOR_GRAY      "\033[0;37m"
36 #define COLOR_END       "\033[0;m"
37
38 #define _ERR(fmt, ...) \
39         do \
40         { \
41                 LOGE(COLOR_RED fmt COLOR_END, ##__VA_ARGS__); \
42         } \
43         while (0)
44
45 #define _INFO(fmt, ...) \
46         do \
47         { \
48                 LOGI(COLOR_GREEN fmt COLOR_END, ##__VA_ARGS__); \
49         } \
50         while (0)
51
52 #define _WARN(fmt, ...) \
53         do \
54         { \
55                 LOGI(COLOR_BROWN fmt COLOR_END, ##__VA_ARGS__); \
56         } \
57         while (0)
58
59 #define _DBG(fmt, ...) \
60         do \
61         { \
62                 LOGD(fmt, ##__VA_ARGS__); \
63         } \
64         while (0)
65
66 #define _BEGIN() \
67         do \
68         { \
69                 LOGD(COLOR_BLUE"BEGIN >>>>"COLOR_END); \
70         } \
71         while (0)
72
73 #define _END() \
74         do \
75         { \
76                 LOGD(COLOR_BLUE"END <<<<"COLOR_END); \
77         } \
78         while (0)
79
80 #endif /* DEBUG_H_ */