@@ -32,6 +32,10 @@ The ROS API for a node will be as follows inside the node's namespace.
3232 * List the parameters on this node matching the filters.
3333 * ` set_parameters ` : ` SetParameters `
3434 * Set parameters on this node.
35+ * ` get_logger_levels ` : ` GetLoggerLevels `
36+ * Get the logger levels of nodes which are in the same process space.
37+ * ` set_logger_levels ` : ` SetLoggerLevels `
38+ * Set the logger levels of nodes which are in the same process space.
3539
3640## Messages (.msg)
3741* [ FloatingPointRange] ( msg/FloatingPointRange.msg ) : Represents bounds and a step value for a floating point typed parameter
@@ -46,14 +50,17 @@ The ROS API for a node will be as follows inside the node's namespace.
4650* [ ParameterType] ( msg/ParameterType.msg ) : Enum definitions for denoting a parameter value's type
4751* [ ParameterValue] ( msg/ParameterValue.msg ) : The associated value and type of a parameter
4852* [ SetParameterResult] ( msg/SetParametersResult.msg ) : Result message indicating whether a set parameters event succeeded
53+ * [ SetLoggerLevelsResult] ( msg/SetLoggerLevelsResult.msg ) : Result message indicating whether a set logger level event succeeded
4954
5055## Services (.srv)
5156* [ DescribeParameters] ( srv/DescribeParameters.srv ) : Request a list of descriptions for a specified list of parameters.
5257* [ GetParameters] ( srv/GetParameters.srv ) : Get the values of a specific list of parameters
5358* [ GetParameterTypes] ( srv/GetParametersTypes.srv ) : Get the enum type of a list of parameters
5459* [ ListParameters] ( srv/ListParameters.srv ) : Get the list of parameters given a list of prefixes
5560* [ SetParameters] ( srv/SetParameters.srv ) : Add or change a list of parameters individually
56- * [ SetParametersAtomically] ( srv/SetParametersAtomically.srv ) : Add or change all parameters in a list or none at all.
61+ * [ SetParametersAtomically] ( srv/SetParametersAtomically.srv ) : Add or change all parameters in a list or none at all
62+ * [ GetLoggerLevels] ( srv/GetLoggerLevels.srv ) : Get the logger levels of a specific list of nodes which are in the same process space
63+ * [ SetLoggerLevels] ( srv/SetLoggerLevels.srv ) : Change a list of logger levels of nodes which are in the same process space
5764
5865## Quality Declaration
5966This package claims to be in the ** Quality Level 1** category, see the [ Quality Declaration] ( QUALITY_DECLARATION.md ) for more details.
0 commit comments