[mapserver-commits] r12121 - trunk/mapserver/mapcache/src

svn at osgeo.org svn at osgeo.org
Fri Aug 26 06:59:34 EDT 2011


Author: tbonfort
Date: 2011-08-26 03:59:34 -0700 (Fri, 26 Aug 2011)
New Revision: 12121

Modified:
   trunk/mapserver/mapcache/src/cache_disk.c
Log:
remove some debugging logs
thomas.bonfort | 2010-10-15 17:18:12 +0200 (Fri, 15 Oct 2010)

Modified: trunk/mapserver/mapcache/src/cache_disk.c
===================================================================
--- trunk/mapserver/mapcache/src/cache_disk.c	2011-08-26 10:59:30 UTC (rev 12120)
+++ trunk/mapserver/mapcache/src/cache_disk.c	2011-08-26 10:59:34 UTC (rev 12121)
@@ -67,7 +67,7 @@
          return GEOCACHE_FAILURE; /* we could not create the file */
       } else {
          /* this shouldn't happen if the caller has properly mutex protected the call ? */
-         ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r, "asked to create file %s, but it already exists",filename);
+         ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, "asked to create file %s, but it already exists",filename);
          apr_file_close(f);
          return GEOCACHE_FILE_EXISTS; /* we have write access, but the file already exists */
       }
@@ -94,7 +94,7 @@
    apr_file_t *f = (apr_file_t*)tile->lock;
    apr_file_info_get(&finfo, APR_FINFO_SIZE, f);
    if(!finfo.size) {
-      ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "unlocking an empty tile, we will remove it");
+      ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, "unlocking an empty tile, we will remove it");
       const char *fname;
       apr_file_name_get(&fname,f);
       apr_file_remove(fname,r->pool);



More information about the mapserver-commits mailing list