[mapserver-commits] r7141 - trunk/mapserver
svn at osgeo.org
svn at osgeo.org
Mon Dec 3 11:32:34 EST 2007
Author: warmerdam
Date: 2007-12-03 11:32:34 -0500 (Mon, 03 Dec 2007)
New Revision: 7141
Modified:
trunk/mapserver/mapobject.c
trunk/mapserver/mapwcs.c
trunk/mapserver/mapwcs11.c
Log:
add newline in debug output
Modified: trunk/mapserver/mapobject.c
===================================================================
--- trunk/mapserver/mapobject.c 2007-12-03 12:39:14 UTC (rev 7140)
+++ trunk/mapserver/mapobject.c 2007-12-03 16:32:34 UTC (rev 7141)
@@ -81,8 +81,7 @@
/*printf("msFreeMap(): maybe freeing map at %p count=%d.\n",map, map->refcount);*/
if ( MS_REFCNT_DECR_IS_NOT_ZERO(map) ) { return; }
if (map->debug >= MS_DEBUGLEVEL_VV)
- msDebug("msFreeMap(): freeing map at %p.",map);
- /*printf("msFreeMap(): freeing map at %p.\n",map);*/
+ msDebug("msFreeMap(): freeing map at %p.\n",map);
msCloseConnections(map);
Modified: trunk/mapserver/mapwcs.c
===================================================================
--- trunk/mapserver/mapwcs.c 2007-12-03 12:39:14 UTC (rev 7140)
+++ trunk/mapserver/mapwcs.c 2007-12-03 16:32:34 UTC (rev 7141)
@@ -1271,7 +1271,7 @@
if( fabs(params->resx/params->resy - 1.0) > 0.001 ) {
map->gt.need_geotransform = MS_TRUE;
if( map->debug )
- msDebug( "RESX and RESY don't match. Using geotransform/resample.");
+ msDebug( "RESX and RESY don't match. Using geotransform/resample.\n");
}
/* Do we have a specified interpolation method */
Modified: trunk/mapserver/mapwcs11.c
===================================================================
--- trunk/mapserver/mapwcs11.c 2007-12-03 12:39:14 UTC (rev 7140)
+++ trunk/mapserver/mapwcs11.c 2007-12-03 16:32:34 UTC (rev 7141)
@@ -115,7 +115,7 @@
if( format_i == map->numoutputformats )
{
- msDebug("Failed to find outputformat info on format '%s', ignore.",
+ msDebug("Failed to find outputformat info on format '%s', ignore.\n",
tokens[i] );
continue;
}
@@ -123,7 +123,7 @@
mimetype = map->outputformatlist[format_i]->mimetype;
if( mimetype == NULL || strlen(mimetype) == 0 )
{
- msDebug("No mimetime for format '%s', ignoring.",
+ msDebug("No mimetime for format '%s', ignoring.\n",
tokens[i] );
continue;
}
@@ -136,7 +136,7 @@
if( j < numformats )
{
- msDebug( "Format '%s' ignored since mimetype '%s' duplicates another outputFormatObj.",
+ msDebug( "Format '%s' ignored since mimetype '%s' duplicates another outputFormatObj.\n",
tokens[i], mimetype );
continue;
}
@@ -276,7 +276,7 @@
"COM", MS_FALSE)) != NULL ) {
/* ok */
} else
- msDebug( "mapwcs.c: missing required information, no SRSs defined.");
+ msDebug( "mapwcs.c: missing required information, no SRSs defined.\n");
if( owned_value != NULL && strlen(owned_value) > 0 )
msLibXml2GenerateList( psCSummary, NULL, "SupportedCRS",
@@ -690,7 +690,7 @@
"COM", MS_FALSE)) != NULL ) {
/* ok */
} else
- msDebug( "mapwcs.c: missing required information, no SRSs defined.");
+ msDebug( "mapwcs.c: missing required information, no SRSs defined.\n");
if( owned_value != NULL && strlen(owned_value) > 0 )
msLibXml2GenerateList( psCD, NULL, "SupportedCRS",
More information about the mapserver-commits
mailing list