Skip to content
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.

Commit

Permalink
debug print to stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
shueja authored Aug 23, 2023
1 parent 6b836b8 commit 9295e0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/path/SwervePathBuilder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ void SwervePathBuilder::WptVelocityDirection(size_t idx, double angle) {
}

void SwervePathBuilder::WptVelocityMagnitude(size_t idx, double v) {
std::cout << v << std::endl;
std::cerr << v << std::endl;
if (std::abs(v) < 0.0001) {
WptZeroVelocity(idx);
} else {
Expand Down

0 comments on commit 9295e0e

Please sign in to comment.