From 1bd19bd961661a7c99d6c0150360e8f44c2bf656 Mon Sep 17 00:00:00 2001 From: liuyifei Date: Mon, 18 Aug 2025 02:01:03 +0000 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0API=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: liuyifei --- interfaces/native/kits/include/hilog/log.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/interfaces/native/kits/include/hilog/log.h b/interfaces/native/kits/include/hilog/log.h index 5771964..fe48b03 100644 --- a/interfaces/native/kits/include/hilog/log.h +++ b/interfaces/native/kits/include/hilog/log.h @@ -165,7 +165,7 @@ int OH_LOG_Print(LogType type, LogLevel level, unsigned int domain, const char * * @param message Indicates the log string. * @return Returns 0 or a larger value if the operation is successful; returns a value smaller * than 0 otherwise. - * @since 16 + * @since 18 */ int OH_LOG_PrintMsg(LogType type, LogLevel level, unsigned int domain, const char *tag, const char *message); @@ -185,7 +185,7 @@ int OH_LOG_PrintMsg(LogType type, LogLevel level, unsigned int domain, const cha * @param messageLen Indicates the length of message. * @return Returns 0 or a larger value if the operation is successful; returns a value smaller * than 0 otherwise. - * @since 16 + * @since 18 */ int OH_LOG_PrintMsgByLen(LogType type, LogLevel level, unsigned int domain, const char *tag, size_t tagLen, const char *message, size_t messageLen); @@ -209,7 +209,7 @@ int OH_LOG_PrintMsgByLen(LogType type, LogLevel level, unsigned int domain, cons * in the format string. * @return Returns 0 or a larger value if the operation is successful; returns a value smaller * than 0 otherwise. - * @since 16 + * @since 18 */ int OH_LOG_VPrint(LogType type, LogLevel level, unsigned int domain, const char *tag, const char *fmt, va_list ap) __attribute__((__format__(os_log, 5, 0))); -- Gitee