Skip to content

Commit

Permalink
error arm not started changed to info level
Browse files Browse the repository at this point in the history
  • Loading branch information
supertick committed Apr 29, 2024
1 parent 988a471 commit d7a0f22
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/myrobotlab/service/InMoov2.java
Original file line number Diff line number Diff line change
Expand Up @@ -1734,7 +1734,7 @@ public boolean setAllVirtual(boolean virtual) {
public void setArmSpeed(String which, Double bicep, Double rotate, Double shoulder, Double omoplate) {
InMoov2Arm arm = getArm(which);
if (arm == null) {
warn("%s arm not started", which);
info("%s arm not started", which);
return;
}
arm.setSpeed(bicep, rotate, shoulder, omoplate);
Expand Down Expand Up @@ -1768,7 +1768,7 @@ public void setHandSpeed(String which, Double thumb, Double index, Double majeur
public void setHandSpeed(String which, Double thumb, Double index, Double majeure, Double ringFinger, Double pinky, Double wrist) {
InMoov2Hand hand = getHand(which);
if (hand == null) {
warn("%s hand not started", which);
info("%s hand not started", which);
return;
}
hand.setSpeed(thumb, index, majeure, ringFinger, pinky, wrist);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ <h3> {{service.platform.arch}}.{{service.platform.jvmBitness}}.{{service.platfor
</ui-select>
</td>
<td>&nbsp;
<button class="btn btn-default" ng-show="!service.isVirtual" title="This will auto start config on next start"
<button class="btn btn-default" ng-show="!service.isVirtual" title="This will virtualize hardware"
ng-click="msg.setVirtual(true)">virtualization off</button>
<button class="btn btn-info" ng-show="service.isVirtual" title="This will auto start config on next start"
ng-click="msg.setVirtual(false)">virtualization on</button>
Expand Down

0 comments on commit d7a0f22

Please sign in to comment.