diff --git a/OpenRTM_aist/examples/SimpleIO/ConsoleIn.py b/OpenRTM_aist/examples/SimpleIO/ConsoleIn.py index ecc389a7..a985e9b1 100644 --- a/OpenRTM_aist/examples/SimpleIO/ConsoleIn.py +++ b/OpenRTM_aist/examples/SimpleIO/ConsoleIn.py @@ -50,6 +50,8 @@ def __call__(self, info): print("Listener: ", self._name) print("Profile::name: ", info.name) print("Profile::id: ", info.id) + print("Profile::properties: ") + print(info.properties) print("------------------------------") return OpenRTM_aist.ConnectorListenerStatus.NO_CHANGE diff --git a/OpenRTM_aist/examples/SimpleIO/ConsoleOut.py b/OpenRTM_aist/examples/SimpleIO/ConsoleOut.py index e85e7ded..53c5af9a 100644 --- a/OpenRTM_aist/examples/SimpleIO/ConsoleOut.py +++ b/OpenRTM_aist/examples/SimpleIO/ConsoleOut.py @@ -52,6 +52,8 @@ def __call__(self, info): print("Listener: ", self._name) print("Profile::name: ", info.name) print("Profile::id: ", info.id) + print("Profile::properties: ") + print(info.properties) print("------------------------------") return OpenRTM_aist.ConnectorListenerStatus.NO_CHANGE