remove legacy libtbm backend
[platform/adaptation/spreadtrum/libtbm-sprd.git] / src / tbm_backend_log.c
1 /**************************************************************************
2
3 libtbm_sprd
4
5 Copyright 2021 Samsung Electronics co., Ltd. All Rights Reserved.
6
7 Contact: SooChan Lim <sc1.lim@samsung.com>
8
9 Permission is hereby granted, free of charge, to any person obtaining a
10 copy of this software and associated documentation files (the
11 "Software"), to deal in the Software without restriction, including
12 without limitation the rights to use, copy, modify, merge, publish,
13 distribute, sub license, and/or sell copies of the Software, and to
14 permit persons to whom the Software is furnished to do so, subject to
15 the following conditions:
16
17 The above copyright notice and this permission notice (including the
18 next paragraph) shall be included in all copies or substantial portions
19 of the Software.
20
21 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
22 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
24 IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
25 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
26 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
27 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28
29 **************************************************************************/
30
31 #include "tbm_backend_log.h"
32
33 #undef LOG_TAG
34 #define LOG_TAG "TBM_BACKEND"
35
36 unsigned int tbm_log_debug_level = TBM_BACKEND_LOG_LEVEL_INFO;
37
38 static void
39 _tbm_backend_log_dlog_print(int level, const char *fmt, va_list arg)
40 {
41         log_priority dlog_prio;
42
43         switch (level) {
44         case TBM_BACKEND_LOG_LEVEL_ERR:
45                 dlog_prio = DLOG_ERROR;
46                 break;
47         case TBM_BACKEND_LOG_LEVEL_WRN:
48                 dlog_prio = DLOG_WARN;
49                 break;
50         case TBM_BACKEND_LOG_LEVEL_INFO:
51                 dlog_prio = DLOG_INFO;
52                 break;
53         case TBM_BACKEND_LOG_LEVEL_DBG:
54                 dlog_prio = DLOG_DEBUG;
55                 break;
56         default:
57                 return;
58         }
59         __dlog_vprint(LOG_ID_SYSTEM, dlog_prio, LOG_TAG, fmt, arg);
60 }
61
62 void
63 tbm_backend_log_print(int level, const char *fmt, ...)
64 {
65         va_list arg;
66
67         if (level > tbm_log_debug_level)
68                 return;
69
70         va_start(arg, fmt);
71         _tbm_backend_log_dlog_print(level, fmt, arg);
72         va_end(arg);
73 }