mirror of
https://github.com/openharmony/ability_ability_runtime.git
synced 2026-08-24 22:21:36 -04:00
ec675221c8
Signed-off-by: louzhihao <louzhihao@huawei.com> Change-Id: I82cdba0dfae28033fe4372ca174b28d90d56c352
79 lines
4.5 KiB
C++
79 lines
4.5 KiB
C++
/*
|
|
* 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 DATASHARE_LOG_PRINT_H
|
|
#define DATASHARE_LOG_PRINT_H
|
|
|
|
#include "hilog/log.h"
|
|
|
|
namespace OHOS::DataShare {
|
|
static inline OHOS::HiviewDFX::HiLogLabel LogLabel()
|
|
{
|
|
return { LOG_CORE, 0xD001312, "DbObsMgr" };
|
|
}
|
|
} // namespace OHOS::DataShare
|
|
|
|
#define LOG_DEBUG(fmt, ...) \
|
|
do { \
|
|
auto lable = LogLabel(); \
|
|
if (HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_DEBUG)) { \
|
|
((void)HILOG_IMPL(lable.type, LogLevel::LOG_DEBUG, lable.domain, lable.tag, \
|
|
"[%{public}s()-%{public}s:%{public}d]: " fmt, __FUNCTION__, \
|
|
__FILE_NAME__, __LINE__, ##__VA_ARGS__)); \
|
|
} \
|
|
} while (0)
|
|
|
|
#define LOG_INFO(fmt, ...) \
|
|
do { \
|
|
auto lable = LogLabel(); \
|
|
if (HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_INFO)) { \
|
|
((void)HILOG_IMPL(lable.type, LogLevel::LOG_INFO, lable.domain, lable.tag, \
|
|
"[%{public}s()-%{public}s:%{public}d]: " fmt, __FUNCTION__, \
|
|
__FILE_NAME__, __LINE__, ##__VA_ARGS__)); \
|
|
} \
|
|
} while (0)
|
|
|
|
#define LOG_WARN(fmt, ...) \
|
|
do { \
|
|
auto lable = LogLabel(); \
|
|
if (HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_WARN)) { \
|
|
((void)HILOG_IMPL(lable.type, LogLevel::LOG_WARN, lable.domain, lable.tag, \
|
|
"[%{public}s()-%{public}s:%{public}d]: " fmt, __FUNCTION__, \
|
|
__FILE_NAME__, __LINE__, ##__VA_ARGS__)); \
|
|
} \
|
|
} while (0)
|
|
|
|
#define LOG_ERROR(fmt, ...) \
|
|
do { \
|
|
auto lable = LogLabel(); \
|
|
if (HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_ERROR)) { \
|
|
((void)HILOG_IMPL(lable.type, LogLevel::LOG_ERROR, lable.domain, lable.tag, \
|
|
"[%{public}s()-%{public}s:%{public}d]: " fmt, __FUNCTION__, \
|
|
__FILE_NAME__, __LINE__, ##__VA_ARGS__)); \
|
|
} \
|
|
} while (0)
|
|
|
|
#define LOG_FATAL(fmt, ...) \
|
|
do { \
|
|
auto lable = LogLabel(); \
|
|
if (HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_FATAL)) { \
|
|
((void)HILOG_IMPL(lable.type, LogLevel::LOG_FATAL, lable.domain, lable.tag, \
|
|
"[%{public}s()-%{public}s:%{public}d]: " fmt, __FUNCTION__, \
|
|
__FILE_NAME__, __LINE__, ##__VA_ARGS__)); \
|
|
} \
|
|
} while (0)
|
|
|
|
#endif // DATASHARE_LOG_PRINT_H
|