From 0355c00d0323f2bd6daf289c3e1b8bc97021f490 Mon Sep 17 00:00:00 2001 From: jmckenna Date: Mon, 28 Feb 2022 15:35:51 -0400 Subject: [PATCH] handle PROJ6 invalid coordinate message through DEBUG levels --- mapproject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mapproject.c b/mapproject.c index 1c883b6a82..b53b1d8181 100644 --- a/mapproject.c +++ b/mapproject.c @@ -367,7 +367,7 @@ static void msProjErrorLogger(void * user_data, { msDebug( "PROJ: Error: %s\n", message ); } - else if( level == PJ_LOG_DEBUG) + else if( level == PJ_LOG_DEBUG ) { msDebug( "PROJ: Debug: %s\n", message ); }