This is an automated email from the ASF dual-hosted git repository.
pengzheng pushed a commit to branch feature/490-add-verbose-log-ctrl
in repository https://gitbox.apache.org/repos/asf/celix.git
The following commit(s) were added to
refs/heads/feature/490-add-verbose-log-ctrl by this push:
new b2be044a Document since which version of the log control service the
newly added methods are available.
b2be044a is described below
commit b2be044ae218d9c88cc850c8e029217f1db0b08f
Author: PengZheng <[email protected]>
AuthorDate: Thu May 11 19:35:42 2023 +0800
Document since which version of the log control service the newly added
methods are available.
---
bundles/logging/log_service_api/include/celix_log_control.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/bundles/logging/log_service_api/include/celix_log_control.h
b/bundles/logging/log_service_api/include/celix_log_control.h
index 70ee2a78..b42a2f0f 100644
--- a/bundles/logging/log_service_api/include/celix_log_control.h
+++ b/bundles/logging/log_service_api/include/celix_log_control.h
@@ -55,6 +55,7 @@ typedef struct celix_log_control {
* @brief Switch between detailed and brief mode for selected loggers.
* @details In detailed mode, details(if available) are attached to log
messages from the select loggers.
* For example, the file name, function name, and line number.
+ * @since 1.1.0
* @param[in] handle The service handle.
* @param[in] select The select string that specifies the case-insensitive
name prefix of target loggers.
* @param[in] detailed True to enable detailed mode, false to disable
detailed mode(i.e. enable brief mode).
@@ -65,6 +66,7 @@ typedef struct celix_log_control {
/**
* @brief Get the active log level and the detailed mode for a selected
logger.
* @details If the logger is not found, the outActiveLogLevel and
outDetailed are not changed.
+ * @since 1.1.0
* @param [in] handle The service handle.
* @param [in] loggerName The name of the target logger.
* @param [out] outActiveLogLevel The active log level of the target
logger.