tizen 2.3 release
[platform/core/location/lbs-server.git] / lbs-server / debug_util.h
1 /*
2  * lbs-server
3  *
4  * Copyright (c) 2011-2013 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Youngae Kang <youngae.kang@samsung.com>, Minjune Kim <sena06.kim@samsung.com>
7  *          Genie Kim <daejins.kim@samsung.com>
8  *
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  * http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  */
21
22 #ifndef _DEBUG_UTIL_H_
23 #define _DEBUG_UTIL_H_
24
25 #include <glib.h>
26 #include <libgen.h>
27
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31
32 #include <dlog.h>
33 #define TAG_GPS_MANAGER         "LBS_SERVER_GPS"
34 #define TAG_NPS_MANAGER         "LBS_SERVER_NPS"
35 #ifdef TIZEN_WEARABLE
36 #define TAG_COMMON_MANAGER      "LBS_SERVER"
37 #endif
38
39 #define DBG_LOW         LOG_DEBUG
40 #define DBG_INFO        LOG_INFO
41 #define DBG_WARN        LOG_WARN
42 #define DBG_ERR         LOG_ERROR
43
44 #define LOG_GPS(dbg_lvl,fmt,args...)  SLOG(dbg_lvl, TAG_GPS_MANAGER, fmt, ##args)
45 #define LOG_NPS(dbg_lvl,fmt,args...)  SLOG(dbg_lvl, TAG_NPS_MANAGER, fmt,##args)
46 #ifdef TIZEN_WEARABLE
47 #define LOG_COMMON(dbg_lvl,fmt,args...)  SLOG(dbg_lvl, TAG_COMMON_MANAGER, fmt, ##args)
48 #endif
49
50 #define FUNC_ENTRANCE_SERVER            LOG_GPS(DBG_LOW, "[%s] Entered!!", __func__);
51
52 #ifdef __cplusplus
53 }
54 #endif
55 #endif                          /* _DEBUG_UTIL_H_ */