diff options
Diffstat (limited to 'src/ctx.cpp')
| -rw-r--r-- | src/ctx.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ctx.cpp b/src/ctx.cpp index 2093950b..b774a40a 100644 --- a/src/ctx.cpp +++ b/src/ctx.cpp @@ -93,10 +93,10 @@ pj_ctx pj_ctx::createDefault() if( getenv("PROJ_DEBUG") != nullptr ) { - if( atoi(getenv("PROJ_DEBUG")) >= -PJ_LOG_DEBUG_MINOR ) + if( atoi(getenv("PROJ_DEBUG")) >= -PJ_LOG_TRACE ) ctx.debug_level = atoi(getenv("PROJ_DEBUG")); else - ctx.debug_level = PJ_LOG_DEBUG_MINOR; + ctx.debug_level = PJ_LOG_TRACE; } return ctx; } |
