We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47e87c1 commit 5482592Copy full SHA for 5482592
mapproject.c
@@ -362,11 +362,11 @@ static void msProjErrorLogger(void * user_data,
362
int level, const char * message)
363
{
364
(void)user_data;
365
- if( level == PJ_LOG_ERROR )
+ if( level == PJ_LOG_ERROR && msGetGlobalDebugLevel() >= MS_DEBUGLEVEL_VV)
366
367
msDebug( "PROJ: Error: %s\n", message );
368
}
369
- else if( level == PJ_LOG_DEBUG )
+ else if( level == PJ_LOG_DEBUG)
370
371
msDebug( "PROJ: Debug: %s\n", message );
372
0 commit comments