/* * Copyright (c) 2023 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 RDB_LOGGER_H #define RDB_LOGGER_H #include "hilog/log.h" namespace OHOS { namespace Rdb { static inline OHOS::HiviewDFX::HiLogLabel LogLabel() { return { LOG_CORE, 0xD001650, "Rdb" }; } } // namespace Rdb namespace RdbNdk { static inline OHOS::HiviewDFX::HiLogLabel LogLabel() { return { LOG_CORE, 0xD001656, "RdbNdk" }; } } // namespace RdbNdk namespace SendableRdb { static inline OHOS::HiviewDFX::HiLogLabel LogLabel() { return { LOG_CORE, 0xD001650, "SRdb" }; } } // namespace Rdb } // namespace OHOS #define LOG_DEBUG(fmt, ...) \ do { \ auto lable = LogLabel(); \ if (HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_DEBUG)) { \ ((void)HILOG_IMPL(lable.type, LOG_DEBUG, lable.domain, lable.tag, \ LOG_TAG "[%{public}s]: " fmt, __FUNCTION__, ##__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, LOG_INFO, lable.domain, lable.tag, \ LOG_TAG "[%{public}s]: " fmt, __FUNCTION__, ##__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, LOG_WARN, lable.domain, lable.tag, \ LOG_TAG "[%{public}s]: " fmt, __FUNCTION__, ##__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, LOG_ERROR, lable.domain, lable.tag, \ LOG_TAG "[%{public}s]: " fmt, __FUNCTION__, ##__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, LOG_FATAL, lable.domain, lable.tag, \ LOG_TAG "[%{public}s]: " fmt, __FUNCTION__, ##__VA_ARGS__)); \ } \ } while (0) #endif // RDB_LOGGER_H