Skip to content

Commit

Permalink
Removed verbose prinouts
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardalee committed Jun 28, 2024
1 parent c25288d commit 1dc760f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/C/src/rosace/RedundantRosace.lf
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ reactor Arbitrator {
if (delta_thc1->is_present) {
lf_set(delta_thc, delta_thc1->value);
} else if (delta_thc2->is_present) {
lf_print_warning("First controller delta_thc input is missing.");
// lf_print_warning("First controller delta_thc input is missing.");
lf_set(delta_thc, delta_thc2->value);
} else {
lf_print_error("Both controllers' delta_thc inputs are missing!");
// lf_print_error("Both controllers' delta_thc inputs are missing!");
}
if (delta_ec1->is_present) {
lf_set(delta_ec, delta_ec1->value);
Expand Down

0 comments on commit 1dc760f

Please sign in to comment.