aboutsummaryrefslogtreecommitdiff
path: root/src/ctx.cpp
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2020-12-15 15:55:06 +0100
committerEven Rouault <even.rouault@spatialys.com>2020-12-15 17:24:55 +0100
commit41c4e54f036d0f8fcc37920fac4b0fa462fd92b2 (patch)
treeea2d9a32f6620cef24f669b902f55c57032d7577 /src/ctx.cpp
parentdf96a13d2c9b70bc18cec1b08eea5b2b068127d7 (diff)
downloadPROJ-41c4e54f036d0f8fcc37920fac4b0fa462fd92b2.tar.gz
PROJ-41c4e54f036d0f8fcc37920fac4b0fa462fd92b2.zip
Remove internal use of PJ_LOG_DEBUG_MINOR and PJ_LOG_DEBUG_MAJOR
Diffstat (limited to 'src/ctx.cpp')
-rw-r--r--src/ctx.cpp4
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;
}