Remove unused code(not use uds).
[platform/core/multimedia/media-server.git] / src / common / include / media-common-dbg.h
1 /*
2  *  Media Server
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Yong Yeon Kim <yy9875.kim@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 /**
23  * This file defines api utilities of contents manager engines.
24  *
25  * @file                media-server-dbg.h
26  * @author      Yong Yeon Kim(yy9875.kim@samsung.com)
27  * @version     1.0
28  * @brief
29  */
30
31 #ifndef _MEDIA_SERVER_DBG_H_
32 #define _MEDIA_SERVER_DBG_H_
33
34 #include <sys/syscall.h>
35 #include <dlog.h>
36 #include <errno.h>
37
38 #ifdef LOG_TAG
39 #undef LOG_TAG
40 #endif
41 #define LOG_TAG "MEDIA_COMMON"
42 #define BUF_LENGTH 256
43
44 #define MS_DBG_STRERROR(fmt) do { \
45                         char buf[BUF_LENGTH] = {0,}; \
46                         strerror_r(errno, buf, BUF_LENGTH); \
47                         LOGE(fmt" : STANDARD ERROR [%s]", buf);  \
48                 } while (0)
49
50
51 #define MS_DBG_SLOG(fmt, args...)       SECURE_LOGD(fmt "\n", ##args);
52
53 #define MS_DBG(fmt, args...)        LOGD(fmt "\n", ##args);
54
55 #define MS_DBG_INFO(fmt, args...) do{ if (true) { \
56                 LOGI(fmt "\n" , ##args); \
57                 }} while(false)
58
59 #define MS_DBG_WARN(fmt, args...) do{ if (true) { \
60                 LOGW(fmt "\n", ##args); \
61                 }} while(false)
62
63 #define MS_DBG_ERR(fmt, args...) do{ if (true) { \
64                 LOGE(fmt "\n", ##args); \
65                 }} while(false)
66
67 #endif /*_MEDIA_SERVER_DBG_H_*/