Skip to content
Snippets Groups Projects
Commit 7245d39f authored by Joseph Mirabel's avatar Joseph Mirabel Committed by olivier stasse
Browse files

Log bound violation messages into ERROR_STREAM_MSG.

parent 17bd33a3
No related branches found
No related tags found
No related merge requests found
......@@ -538,9 +538,12 @@ saturateBounds (double& val, const double& lower, const double& upper)
#define CHECK_BOUNDS(val, lower, upper, what) \
for (int i = 0; i < val.size(); ++i) { \
double old = val(i); \
if (saturateBounds (val(i), lower(i), upper(i))) \
dgRTLOG () << "Robot " what " bound violation at DoF " << i << \
": requested " << old << " but set " << val(i) << '\n'; \
if (saturateBounds (val(i), lower(i), upper(i))) { \
std::ostringstream oss; \
oss << "Robot " what " bound violation at DoF " << i << ": requested " \
<< old << " but set " << val(i) << '\n'; \
SEND_ERROR_STREAM_MSG (oss.str()); \
} \
}
void Device::integrate( const double & dt )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment