2 * Copyright (c) 2000 - 2017 Samsung Electronics Co., Ltd. All rights reserved.
4 * Licensed under the Apache License, Version 2.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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 #ifndef __BADGE_LOG_DEF_H__
20 #define __BADGE_LOG_DEF_H__
28 #define LOG_TAG "BADGE"
30 #define DBG(fmt , args...) \
32 SECURE_LOGD("[%s : %d] "fmt"\n", __func__, __LINE__, ##args); \
35 #define INFO(fmt , args...) \
37 SECURE_LOGI("[%s : %d] "fmt"\n", __func__, __LINE__, ##args); \
40 #define WARN(fmt , args...) \
42 SECURE_LOGW("[%s : %d] "fmt"\n", __func__, __LINE__, ##args); \
45 #define ERR(fmt , args...) \
47 SECURE_LOGE("[%s : %d] "fmt"\n", __func__, __LINE__, ##args); \
50 #else /* BADGE_USE_DLOG */
54 #define DBG(fmt , args...) \
56 printf("[D][%s : %d] "fmt"\n", __func__, __LINE__, ##args); \
59 #define INFO(fmt , args...) \
61 printf("[I][%s : %d] "fmt"\n", __func__, __LINE__, ##args); \
64 #define WARN(fmt , args...) \
66 printf("[W][%s : %d] "fmt"\n", __func__, __LINE__, ##args); \
69 #define ERR(fmt , args...) \
71 printf("[E][%s : %d] "fmt"\n", __func__, __LINE__, ##args); \
74 #endif /* BADGE_USE_DLOG */
76 #endif /* __BADGE_LOG_DEF_H__ */