dlog: Remove profile version from header files 83/302383/1 accepted/tizen_unified_riscv accepted/tizen/unified/20231211.095358 accepted/tizen/unified/riscv/20231215.050252
authorChanwoo Choi <cw00.choi@samsung.com>
Wed, 6 Dec 2023 05:39:23 +0000 (14:39 +0900)
committerChanwoo Choi <cw00.choi@samsung.com>
Wed, 6 Dec 2023 05:40:09 +0000 (14:40 +0900)
Change-Id: I5b594b28fa7dc8c2ec590231c5c0903de753edea
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
include/dlog-internal.h
include/dlog.h

index 9f8b003..9b70db5 100644 (file)
@@ -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
index 53333a2..06498ec 100644 (file)
@@ -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