rollback the boilerplate
[apps/home/starter.git] / lock-mgr / include / lockd-debug.h
1 /*
2  *  starter
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Seungtaek Chung <seungtaek.chung@samsung.com>, Mi-Ju Lee <miju52.lee@samsung.com>, Xi Zhichan <zhichan.xi@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21
22 #ifndef __LOCKD_DEBUG_H__
23 #define __LOCKD_DEBUG_H__
24
25 #include <stdio.h>
26 #include <dlog.h>
27
28 #ifdef  LOG_TAG
29 #undef  LOG_TAG
30 #endif
31
32 #define LOG_TAG "starter"
33
34 #define ENABLE_LOG_SYSTEM
35
36 void lockd_log_t(char *fmt, ...);
37
38 #ifdef ENABLE_LOG_SYSTEM
39 #define STARTER_ERR(fmt, arg...)  LOGE("["LOG_TAG"%s:%d:E] "fmt, __FILE__, __LINE__, ##arg)
40 #define STARTER_DBG(fmt, arg...)  LOGD("["LOG_TAG"%s:%d:D] "fmt, __FILE__, __LINE__, ##arg)
41 #else
42 #define STARTER_ERR(fmt, arg...)
43 #define STARTER_DBG(fmt, arg...)
44 #endif
45
46 #ifdef ENABLE_LOG_SYSTEM
47 #define _ERR(fmt, arg...) do { STARTER_ERR(fmt, ##arg); lockd_log_t("["LOG_TAG":%d:E] "fmt, __LINE__, ##arg); } while (0)
48 #define _DBG(fmt, arg...) do { STARTER_DBG(fmt, ##arg); lockd_log_t("["LOG_TAG":%d:D] "fmt, __LINE__, ##arg); } while (0)
49
50 #define LOCKD_ERR(fmt, arg...) _ERR(fmt, ##arg)
51 #define LOCKD_DBG(fmt, arg...) _DBG(fmt, ##arg)
52 #else
53 #define _ERR(...)
54 #define _DBG(...)
55
56 #define LOCKD_ERR(...)
57 #define LOCKD_ERR(...)
58 #endif
59
60 #ifndef TRUE
61 #define TRUE 1
62 #endif
63 #ifndef FALSE
64 #define FALSE 0
65 #endif
66
67 #endif                          /* __LOCKD_DEBUG_H__ */