| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /*
- * Copyright (c) 2021 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 It3256_LOG_H
- #define It3256_LOG_H
- #include "hilog/log.h"
- #ifndef It3256_LOG_DOMAIN
- #define It3256_LOG_DOMAIN 0xD001200
- #endif
- #ifndef It3256_LOG_TAG
- #define It3256_LOG_TAG "It3256"
- #endif
- #define CUR_FILE_NAME (__builtin_strrchr(__FILE__, '/') ? __builtin_strrchr(__FILE__, '/') + 1 : __FILE__)
- #define It3256_LOGF(fmt, ...) \
- ((void)HILOG_IMPL(LOG_CORE, LOG_FATAL, It3256_LOG_DOMAIN, It3256_LOG_TAG, \
- "[%{public}s(%{public}s:%{public}d)]" fmt, CUR_FILE_NAME, __FUNCTION__, __LINE__, ##__VA_ARGS__))
- #define It3256_LOGE(fmt, ...) \
- ((void)HILOG_IMPL(LOG_CORE, LOG_ERROR, It3256_LOG_DOMAIN, It3256_LOG_TAG, \
- "[%{public}s(%{public}s:%{public}d)]" fmt, CUR_FILE_NAME, __FUNCTION__, __LINE__, ##__VA_ARGS__))
- #define It3256_LOGW(fmt, ...) \
- ((void)HILOG_IMPL(LOG_CORE, LOG_WARN, It3256_LOG_DOMAIN, It3256_LOG_TAG, \
- "[%{public}s(%{public}s:%{public}d)]" fmt, CUR_FILE_NAME, __FUNCTION__, __LINE__, ##__VA_ARGS__))
- #define It3256_LOGI(fmt, ...) \
- ((void)HILOG_IMPL(LOG_CORE, LOG_INFO, It3256_LOG_DOMAIN, It3256_LOG_TAG, \
- "[%{public}s(%{public}s:%{public}d)]" fmt, CUR_FILE_NAME, __FUNCTION__, __LINE__, ##__VA_ARGS__))
- #define It3256_LOGD(fmt, ...) \
- ((void)HILOG_IMPL(LOG_CORE, LOG_DEBUG, It3256_LOG_DOMAIN, It3256_LOG_TAG, \
- "[%{public}s(%{public}s:%{public}d)]" fmt, CUR_FILE_NAME, __FUNCTION__, __LINE__, ##__VA_ARGS__))
- #endif
|