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
#include <proj.h> #include <stdio.h> int main() { proj_log_level(0, PJ_LOG_NONE); PJ* pj_point = proj_create(0, "a b c d e f g h i j"); return 0; }
I would expect the preceding code not to print anything since I set PJ_LOG_NONE as the log level, but when you run it, it prints:
PJ_LOG_NONE
proj_create: unrecognized format / unknown name
No output
Installed PROJ from source
The text was updated successfully, but these errors were encountered:
d798506
Merge pull request #2527 from rouault/fix_2526
32d442d
C API: avoid error messages to be emitted in PJ_LOG_NONE log level (fixes #2526)
No branches or pull requests
Example of problem
Problem description
I would expect the preceding code not to print anything since I set
PJ_LOG_NONE
as the log level, but when you run it, it prints:Expected Output
No output
Environment Information
Installation method
Installed PROJ from source
The text was updated successfully, but these errors were encountered: