mirror of
https://github.com/openharmony/device_manager.git
synced 2026-07-19 18:13:32 -04:00
fce7cc7468
Signed-off-by: wangyb0625 <wangyibo38@huawei.com>
44 lines
1.5 KiB
C++
44 lines
1.5 KiB
C++
/*
|
|
* Copyright (c) 2022 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 OHOS_DM_LOG_H
|
|
#define OHOS_DM_LOG_H
|
|
|
|
namespace OHOS {
|
|
namespace DistributedHardware {
|
|
typedef enum {
|
|
DM_LOG_DEBUG,
|
|
DM_LOG_INFO,
|
|
DM_LOG_WARN,
|
|
DM_LOG_ERROR,
|
|
} DmLogLevel;
|
|
|
|
void DmLog(DmLogLevel logLevel, const char *fmt, ...);
|
|
|
|
#define LOGD(fmt, ...) \
|
|
DmLog(DM_LOG_DEBUG, (std::string("[") + DH_LOG_TAG + "][" + __FUNCTION__ + "]:" + fmt).c_str(), ##__VA_ARGS__)
|
|
|
|
#define LOGI(fmt, ...) \
|
|
DmLog(DM_LOG_INFO, (std::string("[") + DH_LOG_TAG + "][" + __FUNCTION__ + "]:" + fmt).c_str(), ##__VA_ARGS__)
|
|
|
|
#define LOGW(fmt, ...) \
|
|
DmLog(DM_LOG_WARN, (std::string("[") + DH_LOG_TAG + "][" + __FUNCTION__ + "]:" + fmt).c_str(), ##__VA_ARGS__)
|
|
|
|
#define LOGE(fmt, ...) \
|
|
DmLog(DM_LOG_ERROR, (std::string("[") + DH_LOG_TAG + "][" + __FUNCTION__ + "]:" + fmt).c_str(), ##__VA_ARGS__)
|
|
} // namespace DistributedHardware
|
|
} // namespace OHOS
|
|
#endif // OHOS_DM_LOG_H
|