We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not sure this is useful but could we log (add debug switch) some internal state?
I did a simple test printing path.
Is there info useful for debugging provided data sources, fields, etc or are there better data validation tools?
(base) Clemenss-MacBook-Pro:geodot-plugin clemens$ git diff diff --git a/src/geodot.cpp b/src/geodot.cpp index acc61cc..6b26e57 100644 --- a/src/geodot.cpp +++ b/src/geodot.cpp @@ -24,6 +24,7 @@ Ref<GeoDataset> Geodot::get_dataset(String path) { Ref<GeoDataset> dataset; dataset.instance(); + std::cout << "Using file: " << path.utf8().get_data() << std::endl; dataset->load_from_file(path); return dataset;
The text was updated successfully, but these errors were encountered:
Yeah, the ability to create debug builds with additional output could be quite helpful!
Sorry, something went wrong.
No branches or pull requests
Not sure this is useful but could we log (add debug switch) some internal state?
I did a simple test printing path.
Is there info useful for debugging provided data sources, fields, etc or are there better data validation tools?
The text was updated successfully, but these errors were encountered: