From 8fd0793de26ee842d1e5a2407adf57e159771f94 Mon Sep 17 00:00:00 2001 From: joanvallve <jvallve@iri.upc.edu> Date: Wed, 14 Oct 2020 18:13:12 +0200 Subject: [PATCH] hotfix: removed debug prints --- src/feature/feature_base.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/feature/feature_base.cpp b/src/feature/feature_base.cpp index e05748363..b864e27c8 100644 --- a/src/feature/feature_base.cpp +++ b/src/feature/feature_base.cpp @@ -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 { - _stream << _tabs << "FeatureBase::printHeader\n"; _stream << _tabs << "Ftr" << id() << " trk" << trackId() << " " << getType() << ((_depth < 4) ? " -- " + std::to_string(getFactorList().size()) + "c " : ""); if (_constr_by) { @@ -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 { - _stream << _tabs << "FeatureBase::print\n"; _stream << _tabs << "id: " << id() << std::endl; printHeader(_depth, _constr_by, _metric, _state_blocks, _stream, _tabs); if (_depth >= 4) -- GitLab