Tizen 2.0 Release
[profile/ivi/org.tizen.video-player.git] / include / mp-video-log.h
1 /*
2  * Copyright (c) [2012] Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Flora License, Version 1.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://floralicense.org/license/
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
18 #ifndef _VIDEO_LOG_H_
19 #define _VIDEO_LOG_H_
20
21 #include <dlog.h>
22 #include <unistd.h>
23 #include <linux/unistd.h>
24
25
26 #ifdef LOG_TAG
27 #undef LOG_TAG
28 #endif
29
30
31 #define LOG_TAG "video-player"
32
33 //#define video_info(fmt,arg...)                                LOGD( "[%s : %d] " fmt "\n", __FUNCTION__,__LINE__, ##arg)
34 //#define video_info(fmt,arg...)                                LOGI( "[%s : %d] " fmt , __FUNCTION__,__LINE__, ##arg)
35 //#define video_info(fmt,arg...)                                LOGI(fmt , ##arg)
36 //#define video_info(fmt,arg...)                                printf(fmt , ##arg)
37 //#define video_info(fmt,arg...)                                LOGD( "[%s %s : %d] " fmt "\n",__FILE__,  __FUNCTION__,__LINE__, ##arg)
38
39 //#define video_info(fmt,arg...)                                        LOGI( "[VP][%s][%d]" fmt "\n", __FUNCTION__,__LINE__, ##arg)
40 //#define video_debug(fmt,arg...)                                       LOGD( "[%s %s : %d] " fmt "\n",__FILE__, __FUNCTION__,__LINE__, ##arg)
41 //#define video_warning(fmt,arg...)                             LOGD( "[%s %s : %d] " fmt "\n",__FILE__, __FUNCTION__,__LINE__, ##arg)
42 //#define video_error(fmt,arg...)                               LOGD( "[%s %s : %d] " fmt "\n", __FILE__,__FUNCTION__,__LINE__, ##arg)
43
44 #define VideoLogInfoWithTid(fmt,arg...)                 LOGI( "[VP][TID:%d][%s][%d]" fmt "\n", syscall(__NR_gettid), __FUNCTION__, __LINE__, ##arg)
45 #define VideoLogInfo(fmt,arg...)                                LOGI( "[VP][%s][%d]" fmt "\n", __FUNCTION__,__LINE__, ##arg)
46 #define VideoLogDebug(fmt,arg...)                               LOGD( "[%s %s : %d] " fmt "\n",__FILE__, __FUNCTION__,__LINE__, ##arg)
47 #define VideoLogWarning(fmt,arg...)                     LOGD( "[%s %s: %d]\033[0;33m [WARN]  " fmt "\033[0m\n", __FILE__, __FUNCTION__, __LINE__, ##arg)
48 #define VideoLogError( fmt,arg...)                      LOGD( "[%s %s: %d]\033[0;31m [ERR] " fmt "\033[0m\n", __FILE__, __FUNCTION__, __LINE__, ##arg)
49
50
51 //#define video_info(fmt,arg...)                                        printf( "[%s %s : %d] " fmt "\n",__FILE__,  __FUNCTION__,__LINE__, ##arg)
52 //#define video_debug(fmt,arg...)                                       printf( "[%s %s : %d] " fmt "\n",__FILE__, __FUNCTION__,__LINE__, ##arg)
53 //#define video_warning(fmt,arg...)                             printf( "[%s %s : %d] " fmt "\n",__FILE__, __FUNCTION__,__LINE__, ##arg)
54 //#define video_error( fmt,arg...)                              printf( "[%s %s : %d] " fmt "\n", __FILE__,__FUNCTION__,__LINE__, ##arg)
55
56
57 #endif /*_MPVIDEO_LOG_H_*/