Now using SG_LOG properly for outputs
This commit is contained in:
parent
f99c623a98
commit
bb608ad0ef
1 changed files with 3 additions and 1 deletions
|
@ -292,7 +292,9 @@ int main(int argc, char** argv) {
|
|||
exit(1);
|
||||
}
|
||||
}
|
||||
std::cout << min_points << " " << point_limit << " " << error_threshold << "\n";
|
||||
SG_LOG(SG_GENERAL, SG_INFO, "Min points = " << min_points);
|
||||
SG_LOG(SG_GENERAL, SG_INFO, "Max points = " << point_limit);
|
||||
SG_LOG(SG_GENERAL, SG_INFO, "Max error = " << error_threshold);
|
||||
if (optind<argc) {
|
||||
while (optind<argc) {
|
||||
walk_path(argv[optind++]);
|
||||
|
|
Loading…
Reference in a new issue