Initialize Tizen 2.3
[apps/home/b2-clocksetting.git] / include / setting_debug.h
1 /*
2  * Copyright (c) 2000 - 2013 Samsung Electronics Co., Ltd. All rights reserved.
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 #define _DLOG_USED
18 #ifdef  _DLOG_USED
19
20 #include <dlog.h>
21
22 #ifdef LOG_TAG  16
23 #undef LOG_TAG
24 #define LOG_TAG "W-SETTING"
25 #endif
26
27 #define DBG(fmt , args...) \
28         do { \
29                 LOGD("[%s : %d] "fmt"", __func__, __LINE__, ##args); \
30         } while (0)
31
32 #define INFO(fmt , args...) \
33         do { \
34                 LOGI("[%s : %d] "fmt"", __func__, __LINE__, ##args); \
35         } while (0)
36
37 #define WARN(fmt , args...) \
38         do { \
39                 LOGI("[%s : %d] "fmt"", __func__, __LINE__, ##args); \
40         } while (0)
41
42 #define ERR(fmt , args...) \
43         do { \
44                 LOGI("[%s : %d] "fmt"", __func__, __LINE__, ##args); \
45         } while (0)
46
47
48 #define __FREE(del, arg) do { \
49                 if(arg) { \
50                         del((void *)(arg)); /*cast any argument to (void*) to avoid build warring*/\
51                         arg = NULL; \
52                 } \
53         } while (0);
54
55 #define FREE(arg) __FREE(free, arg)
56
57 #endif