We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 550f7b7 commit 2e4cebbCopy full SHA for 2e4cebb
apps/Projection/Projection.cpp
@@ -14,6 +14,7 @@
14
#include <vtkAppendPolyData.h>
15
#include <vtkCleanPolyData.h>
16
#include <vtkCutter.h>
17
+#include <vtkLogger.h>
18
#include <vtkPlane.h>
19
#include <vtkSmartPointer.h>
20
#include <vtkStripper.h>
@@ -85,6 +86,9 @@ auto main(int argc, char* argv[]) -> int
85
86
return EXIT_FAILURE;
87
}
88
89
+ // only print VTK warnings or errors
90
+ vtkLogger::SetStderrVerbosity(vtkLogger::VERBOSITY_WARNING);
91
+
92
// Get options
93
vc::ProjectionSettings projectionSettings;
94
auto meshPaths = parsed["input-mesh"].as<std::vector<std::string>>();
0 commit comments