Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
mamaheux committed Jan 15, 2024
1 parent d9de3e2 commit 5c077b9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/hbba_lite_cpp/core/RosStrategyStateLogger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ void RosLogStrategyStateLogger::log(DesireType desireType, StrategyType strategy
{
ROS_INFO_STREAM(
"HBBA strategy state changed: "
<< "( " << desireType.name() << ", " << strategyType.name() << ") -> " << enabled);
<< "( " << desireType.name() << ", " << strategyType.name() << ") -> " << enabled ?
"enabled" :
"disabled");
}


Expand Down

0 comments on commit 5c077b9

Please sign in to comment.