Skip to content

Commit

Permalink
Removing debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
khuck committed Feb 1, 2023
1 parent 90532db commit 56eab9a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/apex/dependency_tree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,6 @@ double Node::writeNodeCSV(std::stringstream& outfile, double total, int node_id)
void Node::addMetrics(std::map<std::string, double>& _metric_map) {
static std::mutex m;
for (auto& x: _metric_map) {
std::cout << x.first << " => " << x.second << '\n';
if (known_metrics.find(x.first) == known_metrics.end()) {
m.lock();
known_metrics.insert(x.first);
Expand Down

0 comments on commit 56eab9a

Please sign in to comment.