Update for modification of scanning process.
[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 #ifndef _MEDIA_COMMON_DBG_H_
23 #define _MEDIA_COMMON_DBG_H_
24
25 #include <sys/syscall.h>
26 #include <dlog.h>
27 #include <errno.h>
28
29 #ifdef LOG_TAG
30 #undef LOG_TAG
31 #endif
32 #define LOG_TAG "MEDIA_COMMON"
33 #define BUF_LENGTH 256
34
35 #define MS_DBG_STRERROR(fmt) do { \
36                         char buf[BUF_LENGTH] = {0,}; \
37                         LOGE(fmt" : STANDARD ERROR [%s]", strerror_r(errno, buf, BUF_LENGTH)); \
38                 } while (0)
39
40 #define MS_DBG_SLOG(fmt, args...)       SECURE_LOGD(fmt "\n", ##args);
41
42 #define MS_DBG(fmt, args...)        LOGD(fmt "\n", ##args);
43
44 #define MS_DBG_INFO(fmt, args...) do{ if (true) { \
45                 LOGI(fmt "\n" , ##args); \
46                 }} while(false)
47
48 #define MS_DBG_WARN(fmt, args...) do{ if (true) { \
49                 LOGW(fmt "\n", ##args); \
50                 }} while(false)
51
52 #define MS_DBG_ERR(fmt, args...) do{ if (true) { \
53                 LOGE(fmt "\n", ##args); \
54                 }} while(false)
55
56 #endif /*_MEDIA_COMMON_DBG_H_*/