/* * 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 UDMF_LOGGER_H #define UDMF_LOGGER_H #include #include "hilog/log.h" namespace OHOS { namespace UDMF { // param of log interface, such as UDMF_LABEL. enum UdmfSubModule { UDMF_FRAMEWORK = 0, // for framework core module UDMF_KITS_INNER, // for udmf innerkits module UDMF_KITS_NAPI, // for udmf napi kits module UDMF_CLIENT, // for udmf client module UDMF_SERVICE, // for udmf service module UDMF_TEST, // for udmf test module }; // 0xD001600: subsystem:distributeddatamgr module:udmf, 8 bits reserved. static inline OHOS::HiviewDFX::HiLogLabel LogLabel() { return { LOG_CORE, 0xD001656, "UDMF" }; } // In order to improve performance, do not check the module range. // Besides, make sure module is less than UDMF_SERVICE. #define LOG_FATAL(module, fmt, ...) \ do { \ using HiLog = OHOS::HiviewDFX::HiLog; \ auto lable = LogLabel(); \ if (!HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_FATAL)) { \ break; \ } \ HiLog::Fatal(lable, "%{public}d: %{public}s " fmt " ", __LINE__, __FUNCTION__, ##__VA_ARGS__); \ } while (0) #define LOG_ERROR(module, fmt, ...) \ do { \ using HiLog = OHOS::HiviewDFX::HiLog; \ auto lable = LogLabel(); \ if (!HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_ERROR)) { \ break; \ } \ HiLog::Error(lable, "%{public}d: %{public}s " fmt " ", __LINE__, __FUNCTION__, ##__VA_ARGS__); \ } while (0) #define LOG_WARN(module, fmt, ...) \ do { \ using HiLog = OHOS::HiviewDFX::HiLog; \ auto lable = LogLabel(); \ if (!HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_WARN)) { \ break; \ } \ HiLog::Warn(lable, "%{public}d: %{public}s " fmt " ", __LINE__, __FUNCTION__, ##__VA_ARGS__); \ } while (0) #define LOG_INFO(module, fmt, ...) \ do { \ using HiLog = OHOS::HiviewDFX::HiLog; \ auto lable = LogLabel(); \ if (!HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_INFO)) { \ break; \ } \ HiLog::Info(lable, "%{public}d: %{public}s " fmt " ", __LINE__, __FUNCTION__, ##__VA_ARGS__); \ } while (0) #define LOG_DEBUG(module, fmt, ...) \ do { \ using HiLog = OHOS::HiviewDFX::HiLog; \ auto lable = LogLabel(); \ if (!HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_DEBUG)) { \ break; \ } \ HiLog::Debug(lable, "%{public}d: %{public}s " fmt " ", __LINE__, __FUNCTION__, ##__VA_ARGS__); \ } while (0) } // namespace UDMF } // namespace OHOS #endif // UDMF_LOGGER_H