From f9f277b934ef7ceaf6cbaaac195d7ac1f575ed3d Mon Sep 17 00:00:00 2001 From: Chanwoo Choi Date: Wed, 6 Dec 2023 14:39:23 +0900 Subject: [PATCH] dlog: Remove profile version from header files Change-Id: I5b594b28fa7dc8c2ec590231c5c0903de753edea Signed-off-by: Chanwoo Choi --- include/dlog-internal.h | 2 +- include/dlog.h | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/dlog-internal.h b/include/dlog-internal.h index 9f8b003..9b70db5 100644 --- a/include/dlog-internal.h +++ b/include/dlog-internal.h @@ -445,7 +445,7 @@ int __dlog_vprint(log_id_t log_id, int prio, const char *tag, const char *fmt, v * except you can choose which priorities to filter. * Using this (as opposed to filtering later, when retrieving logs) is that it * helps conserve system logging resources (buffer space etc.) - * @if MOBILE @since_tizen 6.0 @elseif WEARABLE @since_tizen 6.0 @endif + * @since_tizen 6.0 * @param[in] prio minimum priority level (of type #log_priority) * @returns A DLOG_ERROR code * @retval DLOG_ERROR_NONE Success diff --git a/include/dlog.h b/include/dlog.h index 53333a2..06498ec 100644 --- a/include/dlog.h +++ b/include/dlog.h @@ -64,7 +64,7 @@ extern "C" { /** * @brief Enumeration for Dlog Error. - * @if MOBILE @since_tizen 2.3 @elseif WEARABLE @since_tizen 2.3.1 @endif + * @since_tizen 2.3 */ typedef enum { DLOG_ERROR_NONE = TIZEN_ERROR_NONE, /**< Successful */ @@ -86,7 +86,7 @@ typedef enum { /** * @brief Enumeration for log priority values in ascending priority order. - * @if MOBILE @since_tizen 2.3 @elseif WEARABLE @since_tizen 2.3.1 @endif + * @since_tizen 2.3 */ typedef enum { DLOG_UNKNOWN = 0, /**< Keep this always at the start */ @@ -116,7 +116,7 @@ typedef enum { /** * @brief Sends log with priority and tag. * @details for application. - * @if MOBILE @since_tizen 2.3 @elseif WEARABLE @since_tizen 2.3.1 @endif + * @since_tizen 2.3 * @param[in] prio priority level of type #log_priority * @param[in] tag tag - a null-terminated string * @param[in] fmt format string - same as printf @@ -147,7 +147,7 @@ int dlog_print(log_priority prio, const char *tag, const char *fmt, ...) __attr /** * @brief Sends log with priority, tag, and va_list. * @details for application. - * @if MOBILE @since_tizen 2.3 @elseif WEARABLE @since_tizen 2.3.1 @endif + * @since_tizen 2.3 * @param[in] prio priority level of type #log_priority * @param[in] tag tag - a null-terminated string * @param[in] fmt format string - same as printf -- 2.7.4