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
With #2527, errors are no longer raised by default.
This is because PJ_LOG_NONE is the default:
PJ_LOG_NONE
PROJ/src/ctx.cpp
Line 90 in cd10468
PROJ/src/proj_internal.h
Line 650 in cd10468
Thoughts about making the default level PJ_LOG_ERROR so errors are logged by default?
PJ_LOG_ERROR
The text was updated successfully, but these errors were encountered:
https://docs.python.org/3/howto/logging.html "The root logger always has an explicit level set (WARNING by default)"
Seems like having ERROR as the default is reasonable if you follow the python logging pattern. Any opposition?
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
With #2527, errors are no longer raised by default.
This is because
PJ_LOG_NONE
is the default:PROJ/src/ctx.cpp
Line 90 in cd10468
PROJ/src/proj_internal.h
Line 650 in cd10468
Thoughts about making the default level
PJ_LOG_ERROR
so errors are logged by default?The text was updated successfully, but these errors were encountered: