/* * 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 PRE_LOG_PRINTF_H #define PRE_LOG_PRINTF_H #include #include #include "hilog/log.h" namespace OHOS { namespace PreferencesJsKit { static inline OHOS::HiviewDFX::HiLogLabel LogLabel() { return { LOG_CORE, 0xD001653, "PreferencesJsKit" }; } } namespace NativePreferences { static inline OHOS::HiviewDFX::HiLogLabel LogLabel() { return { LOG_CORE, 0xD001653, "NativePreferences" }; } } namespace PreferencesNdk { static inline OHOS::HiviewDFX::HiLogLabel LogLabel() { return { LOG_CORE, 0xD001653, "PreferencesNdk" }; } } namespace StorageJsKit { static inline OHOS::HiviewDFX::HiLogLabel LogLabel() { return { LOG_CORE, 0xD001653, "StorageJsKit" }; } } namespace Sendable::JSPreferences { static inline OHOS::HiviewDFX::HiLogLabel LogLabel() { return { LOG_CORE, 0xD001653, "JSPreferences" }; } } } // namespace OHOS #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: " fmt, __FUNCTION__, ##__VA_ARGS__)); \ } \ } while (0) #define LOG_RECORD_FILE_NAME(message) \ do { \ const char *name = fileName.data(); \ auto pos = fileName.rfind('/'); \ pos = (pos != std::string::npos) ? pos + 1 : 0; \ LOG_DEBUG(message " fileName is %{private}s.", name + pos); \ } 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: " 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, LogLevel::LOG_WARN, lable.domain, lable.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, LogLevel::LOG_ERROR, lable.domain, lable.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, LogLevel::LOG_FATAL, lable.domain, lable.tag, \ "%{public}s: " fmt, __FUNCTION__, ##__VA_ARGS__)); \ } \ } while (0) #endif