1 /* 2 * Copyright (C) 2021 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef HAPVERIFY_LOG_H 17 #define HAPVERIFY_LOG_H 18 19 #include "hilog/log.h" 20 21 namespace OHOS { 22 namespace Security { 23 namespace Verify { 24 static constexpr uint32_t SECURITY_DOMAIN = 0xD002F00; 25 static constexpr OHOS::HiviewDFX::HiLogLabel LABEL = {LOG_CORE, SECURITY_DOMAIN, "HapVerify"}; 26 27 #define HAPVERIFY_LOG_DEBUG(label, fmt, ...) \ 28 OHOS::HiviewDFX::HiLog::Debug(label, "%{public}s: " fmt, __func__, ##__VA_ARGS__) 29 #define HAPVERIFY_LOG_INFO(label, fmt, ...) \ 30 OHOS::HiviewDFX::HiLog::Info(label, "%{public}s: " fmt, __func__, ##__VA_ARGS__) 31 #define HAPVERIFY_LOG_WARN(label, fmt, ...) \ 32 OHOS::HiviewDFX::HiLog::Warn(label, "%{public}s: " fmt, __func__, ##__VA_ARGS__) 33 #define HAPVERIFY_LOG_ERROR(label, fmt, ...) \ 34 OHOS::HiviewDFX::HiLog::Error(label, "%{public}s: " fmt, __func__, ##__VA_ARGS__) 35 #define HAPVERIFY_LOG_FATAL(label, fmt, ...) \ 36 OHOS::HiviewDFX::HiLog::Fatal(label, "%{public}s: " fmt, __func__, ##__VA_ARGS__) 37 } // namespace Verify 38 } // namespace Security 39 } // namespace OHOS 40 #endif // HAPVERIFY_LOG_H 41