Skip to content
Snippets Groups Projects
Commit 8997daa9 authored by Joan Vallvé Navarro's avatar Joan Vallvé Navarro
Browse files

more informative debug messages

parent 2d3407bc
No related branches found
No related tags found
No related merge requests found
Pipeline #5295 failed
...@@ -82,7 +82,13 @@ unsigned int ProcessorTrackerFeature::processKnown() ...@@ -82,7 +82,13 @@ unsigned int ProcessorTrackerFeature::processKnown()
matches_last_from_incoming_.clear(); matches_last_from_incoming_.clear();
known_features_incoming_.clear(); known_features_incoming_.clear();
if (!last_ptr_ || known_features_last_.empty()) if (!last_ptr_)
{
WOLF_TRACE("null last, returning...");
return 0;
}
if (known_features_last_.empty())
{ {
WOLF_TRACE("Empty last feature list, returning..."); WOLF_TRACE("Empty last feature list, returning...");
return 0; return 0;
......
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