Skip to content

Commit

Permalink
removed couts
Browse files Browse the repository at this point in the history
  • Loading branch information
kylemann16 committed Sep 24, 2018
1 parent f5ea55b commit 3ef842e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/i3s/io/EsriReader.cpp
Expand Up @@ -188,12 +188,12 @@ namespace pdal
//Create view with overlapping leaf nodes
//Will create a thread pool on the createview class and iterate
//through the node list for the nodes to be pulled.
std::cout << "Fetching binaries" << std::endl;
log()->get(LogLevel::Debug) << "Fetching binaries" << std::endl;
Pool p(m_args.threads);
for (std::size_t i = 0; i < nodes.size(); i++)
{
std::cout << "\r" << i << "/" << nodes.size();
std::cout.flush();
log()->get(LogLevel::Debug) << "\r" << i << "/" << nodes.size();
log()->get(LogLevel::Debug).flush();
std::string localUrl;

localUrl = m_filename + "/nodes/" + std::to_string(nodes[i]);
Expand Down

0 comments on commit 3ef842e

Please sign in to comment.