ld_log.h 1.6 KB
Newer Older
W
wangjiahui 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Copyright (c) 2022 Huawei Device Co., Ltd.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef LD_LOG_H
#define LD_LOG_H

W
wangjiahui 已提交
19 20
#include <musl_log.h>

W
wangjiahui 已提交
21 22 23 24 25 26 27
#define LD_LOG_ERROR 1
#define LD_LOG_WARNING 2
#define LD_LOG_INFO 4
#define LD_LOG_DEBUG 8

#define LD_LOG_LEVEL (LD_LOG_ERROR | LD_LOG_WARNING)

G
ganlan 已提交
28 29
#define LD_LOG_TAG "MUSL-LDSO"

W
wangjiahui 已提交
30
#if (LD_LOG_LEVEL & LD_LOG_ERROR)
G
ganlan 已提交
31
#define LD_LOGE(...) ((void)HiLogAdapterPrint(MUSL_LOG_TYPE, LOG_ERROR, MUSL_LOG_DOMAIN, LD_LOG_TAG, __VA_ARGS__))
W
wangjiahui 已提交
32 33 34 35 36
#else
#define LD_LOGE(...)
#endif

#if (LD_LOG_LEVEL & LD_LOG_WARNING)
G
ganlan 已提交
37
#define LD_LOGW(...) ((void)HiLogAdapterPrint(MUSL_LOG_TYPE, LOG_WARN, MUSL_LOG_DOMAIN, LD_LOG_TAG, __VA_ARGS__))
W
wangjiahui 已提交
38 39 40 41 42
#else
#define LD_LOGW(...)
#endif

#if (LD_LOG_LEVEL & LD_LOG_INFO)
G
ganlan 已提交
43
#define LD_LOGI(...) ((void)HiLogAdapterPrint(MUSL_LOG_TYPE, LOG_INFO, MUSL_LOG_DOMAIN, LD_LOG_TAG, __VA_ARGS__))
W
wangjiahui 已提交
44 45 46 47 48
#else
#define LD_LOGI(...)
#endif

#if (LD_LOG_LEVEL & LD_LOG_DEBUG)
G
ganlan 已提交
49
#define LD_LOGD(...) ((void)HiLogAdapterPrint(MUSL_LOG_TYPE, LOG_DEBUG, MUSL_LOG_DOMAIN, LD_LOG_TAG, __VA_ARGS__))
W
wangjiahui 已提交
50 51 52 53 54
#else
#define LD_LOGD(...)
#endif

#endif  // LD_LOG_H