diff --git a/ros2/src/robobin/robobin/motor_control_node.py b/ros2/src/robobin/robobin/motor_control_node.py
index 1ad8ecfc506e2e1ddd02e19b0a4ddbe4428a26eb..74cb1b81f2acca54a20d7477e7dfebb9ff7978c3 100644
--- a/ros2/src/robobin/robobin/motor_control_node.py
+++ b/ros2/src/robobin/robobin/motor_control_node.py
@@ -5,6 +5,7 @@ from geometry_msgs.msg import Twist
 class MotorController(Node):
     def __init__(self):
         super().__init__('motor_controller')
+        self.get_logger().info("Motor Controller has been started.")
         self.subscription = self.create_subscription(Twist,'cmd_vel',self.cmd_vel_callback,10)
         self.wheel_radius = 0.05  # meters
         self.wheel_base = 0.30