1
0
Fork 0

Now using SG_LOG properly for outputs

This commit is contained in:
Ralf Gerlich 2007-12-19 09:29:54 +01:00
parent f99c623a98
commit bb608ad0ef

View file

@ -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++]);