Skip to content
Snippets Groups Projects
Commit dac14d91 authored by Emmanuel Christophe's avatar Emmanuel Christophe
Browse files

STYLE: std::cout to otbDebugMacro

parent 8703c241
No related branches found
No related tags found
No related merge requests found
......@@ -81,8 +81,8 @@ namespace otb
liblas::LASHeader const& header = reader.GetHeader();
std::cout << "Signature: " << header.GetFileSignature() << std::endl;
std::cout << "Points count: " << header.GetPointRecordsCount() << std::endl;
otbDebugMacro(<< "Signature: " << header.GetFileSignature());
otbDebugMacro(<< "Points count: " << header.GetPointRecordsCount());
m_NumberOfPoints = header.GetPointRecordsCount();
......@@ -141,8 +141,8 @@ namespace otb
liblas::LASHeader const& header = reader.GetHeader();
std::cout << "Signature: " << header.GetFileSignature() << std::endl;
std::cout << "Points count: " << header.GetPointRecordsCount() << std::endl;
otbDebugMacro(<< "Signature: " << header.GetFileSignature());
otbDebugMacro(<< "Points count: " << header.GetPointRecordsCount());
m_NumberOfPoints = header.GetPointRecordsCount();
......
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