Skip to content

Commit

Permalink
fix fix for log output
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickbr committed Mar 27, 2024
1 parent 296c680 commit 8c66cdb
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/spatialjoin/Sweeper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,6 @@ size_t Sweeper::add(const util::geo::I32MultiPolygon& a, const std::string& gid,
add(poly, gid, subid);
subid++;
}
_curSweepId++;

if (_curSweepId % 1000000 == 0) LOGTO(INFO, std::cerr) << "@ " << _curSweepId;
return subid;
}

Expand All @@ -72,9 +69,6 @@ size_t Sweeper::add(const util::geo::I32MultiLine& a, const std::string& gid,
add(line, gid, subid);
subid++;
}
_curSweepId++;

if (_curSweepId % 1000000 == 0) LOGTO(INFO, std::cerr) << "@ " << _curSweepId;
return subid;
}

Expand All @@ -86,9 +80,6 @@ size_t Sweeper::add(const util::geo::I32MultiPoint& a, const std::string& gid,
add(point, gid, subid);
subid++;
}
_curSweepId++;

if (_curSweepId % 1000000 == 0) LOGTO(INFO, std::cerr) << "@ " << _curSweepId;
return subid;
}

Expand Down

0 comments on commit 8c66cdb

Please sign in to comment.