Skip to content

Commit

Permalink
silence debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
hobu committed Jun 10, 2013
1 parent 76c2da5 commit 4875ead
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/gitsha.cpp
@@ -1,3 +1,3 @@
#include <pdal/gitsha.h>
#define GIT_SHA1 "e6d1613cdfd7dfc1873c1150d4c9011208604a3c"
#define GIT_SHA1 "76c2da5f07d6138a0ce61def30b78e0e58859763"
const char g_GIT_SHA1[] = GIT_SHA1;
4 changes: 2 additions & 2 deletions test/unit/drivers/nitf/NitfWriterTest.cpp
Expand Up @@ -150,8 +150,8 @@ BOOST_AUTO_TEST_CASE(test1)



writer_opts.add(debug);
writer_opts.add(verbose);
// writer_opts.add(debug);
// writer_opts.add(verbose);
writer_opts.add(writer_opt1);

pdal::drivers::las::Reader reader(reader_opts);
Expand Down
4 changes: 2 additions & 2 deletions test/unit/filters/HexbinFilterTest.cpp
Expand Up @@ -58,8 +58,8 @@ BOOST_AUTO_TEST_CASE(HexbinFilterTest_test_1)

pdal::Option debug("debug", true, "");
pdal::Option verbose("verbose", 9, "");
options.add(debug);
options.add(verbose);
// options.add(debug);
// options.add(verbose);
pdal::Option sample_size("sample_size",5000, "Number of samples to use when estimating hexagon edge size. Specify 0.0 for edge_size if you want to compute one.");
pdal::Option threshold("threshold", 10, "Number of points necessary inside a hexagon to be considered full");
pdal::Option edge_size("edge_size", 0.0, "The edge size of the hexagon to use in situations where you do not want to estimate based on a sample");
Expand Down

0 comments on commit 4875ead

Please sign in to comment.