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

hotfix: removed debug prints

parent e07c6135
No related branches found
No related tags found
No related merge requests found
Pipeline #5971 passed
...@@ -177,7 +177,6 @@ void FeatureBase::link(CaptureBasePtr _cpt_ptr) ...@@ -177,7 +177,6 @@ void FeatureBase::link(CaptureBasePtr _cpt_ptr)
} }
void FeatureBase::printHeader(int _depth, bool _constr_by, bool _metric, bool _state_blocks, std::ostream& _stream, std::string _tabs) const void FeatureBase::printHeader(int _depth, bool _constr_by, bool _metric, bool _state_blocks, std::ostream& _stream, std::string _tabs) const
{ {
_stream << _tabs << "FeatureBase::printHeader\n";
_stream << _tabs << "Ftr" << id() << " trk" << trackId() << " " << getType() << ((_depth < 4) ? " -- " + std::to_string(getFactorList().size()) + "c " : ""); _stream << _tabs << "Ftr" << id() << " trk" << trackId() << " " << getType() << ((_depth < 4) ? " -- " + std::to_string(getFactorList().size()) + "c " : "");
if (_constr_by) if (_constr_by)
{ {
...@@ -195,7 +194,6 @@ void FeatureBase::printHeader(int _depth, bool _constr_by, bool _metric, bool _s ...@@ -195,7 +194,6 @@ void FeatureBase::printHeader(int _depth, bool _constr_by, bool _metric, bool _s
void FeatureBase::print(int _depth, bool _constr_by, bool _metric, bool _state_blocks, std::ostream& _stream, std::string _tabs) const void FeatureBase::print(int _depth, bool _constr_by, bool _metric, bool _state_blocks, std::ostream& _stream, std::string _tabs) const
{ {
_stream << _tabs << "FeatureBase::print\n";
_stream << _tabs << "id: " << id() << std::endl; _stream << _tabs << "id: " << id() << std::endl;
printHeader(_depth, _constr_by, _metric, _state_blocks, _stream, _tabs); printHeader(_depth, _constr_by, _metric, _state_blocks, _stream, _tabs);
if (_depth >= 4) if (_depth >= 4)
......
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