Merge branch '0128_tizen20'
[apps/core/preloaded/video-player.git] / include / mp-video-log.h
1 /*
2  * To apply the Flora License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives.
3  * 
4  *    Copyright [2012] [JongDong Lee <jongdong.lee@samsung.com>, ChangSun Lee <cs78.lee@samsung.com>]
5  * 
6  *    Licensed under the Flora License, Version 1.0 (the "License");
7  *    you may not use this file except in compliance with the License.
8  *    You may obtain a copy of the License at
9  * 
10  *        http://www.tizenopensource.org/license
11  * 
12  *    Unless required by applicable law or agreed to in writing, software
13  *    distributed under the License is distributed on an "AS IS" BASIS,
14  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *    See the License for the specific language governing permissions and
16  *    limitations under the License.
17  */
18
19
20 #ifndef _VIDEO_LOG_H_
21 #define _VIDEO_LOG_H_
22
23 #include <dlog.h>
24 #include <unistd.h>
25 #include <linux/unistd.h>
26
27
28 #ifdef LOG_TAG
29 #undef LOG_TAG
30 #endif
31
32
33 #define LOG_TAG "video-player"
34
35 //#define video_info(fmt,arg...)                                LOGD( "[%s : %d] " fmt "\n", __FUNCTION__,__LINE__, ##arg)
36 //#define video_info(fmt,arg...)                                LOGI( "[%s : %d] " fmt , __FUNCTION__,__LINE__, ##arg)
37 //#define video_info(fmt,arg...)                                LOGI(fmt , ##arg)
38 //#define video_info(fmt,arg...)                                printf(fmt , ##arg)
39 //#define video_info(fmt,arg...)                                LOGD( "[%s %s : %d] " fmt "\n",__FILE__,  __FUNCTION__,__LINE__, ##arg)
40
41 //#define video_info(fmt,arg...)                                        LOGI( "[VP][%s][%d]" fmt "\n", __FUNCTION__,__LINE__, ##arg)
42 //#define video_debug(fmt,arg...)                                       LOGD( "[%s %s : %d] " fmt "\n",__FILE__, __FUNCTION__,__LINE__, ##arg)
43 //#define video_warning(fmt,arg...)                             LOGD( "[%s %s : %d] " fmt "\n",__FILE__, __FUNCTION__,__LINE__, ##arg)
44 //#define video_error(fmt,arg...)                               LOGD( "[%s %s : %d] " fmt "\n", __FILE__,__FUNCTION__,__LINE__, ##arg)
45
46 #define VideoLogInfoWithTid(fmt,arg...)                 LOGI( "[VP][TID:%d][%s][%d]" fmt "\n", syscall(__NR_gettid), __FUNCTION__, __LINE__, ##arg)
47 #define VideoLogInfo(fmt,arg...)                                LOGI( "[VP][%s][%d]" fmt "\n", __FUNCTION__,__LINE__, ##arg)
48 #define VideoLogDebug(fmt,arg...)                               LOGD( "[%s %s : %d] " fmt "\n",__FILE__, __FUNCTION__,__LINE__, ##arg)
49 #define VideoLogWarning(fmt,arg...)                     LOGD( "[%s %s: %d]\033[0;33m [WARN]  " fmt "\033[0m\n", __FILE__, __FUNCTION__, __LINE__, ##arg)
50 #define VideoLogError( fmt,arg...)                      LOGD( "[%s %s: %d]\033[0;31m [ERR] " fmt "\033[0m\n", __FILE__, __FUNCTION__, __LINE__, ##arg)
51
52
53 //#define video_info(fmt,arg...)                                        printf( "[%s %s : %d] " fmt "\n",__FILE__,  __FUNCTION__,__LINE__, ##arg)
54 //#define video_debug(fmt,arg...)                                       printf( "[%s %s : %d] " fmt "\n",__FILE__, __FUNCTION__,__LINE__, ##arg)
55 //#define video_warning(fmt,arg...)                             printf( "[%s %s : %d] " fmt "\n",__FILE__, __FUNCTION__,__LINE__, ##arg)
56 //#define video_error( fmt,arg...)                              printf( "[%s %s : %d] " fmt "\n", __FILE__,__FUNCTION__,__LINE__, ##arg)
57
58
59 #endif /*_MPVIDEO_LOG_H_*/