From 1a679c8cd9a8473923f68b0c1b494212e35ac644 Mon Sep 17 00:00:00 2001
From: Charles Krinke
Date: Sun, 23 Dec 2007 01:09:21 +0000
Subject: Simplify GridServer mainmap log messages.

---
 OpenSim/Grid/GridServer/GridManager.cs | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/OpenSim/Grid/GridServer/GridManager.cs b/OpenSim/Grid/GridServer/GridManager.cs
index fad9f0d..c2e8e94 100644
--- a/OpenSim/Grid/GridServer/GridManager.cs
+++ b/OpenSim/Grid/GridServer/GridManager.cs
@@ -471,7 +471,8 @@ namespace OpenSim.Grid.GridServer
             {
                 ymax = (Int32) requestData["ymax"];
             }
-            MainLog.Instance.Verbose("MAP", "World map request for range (" + xmin + "," + ymin + ")..(" + xmax + "," + ymax + ")");
+            //CFK: The second MainLog is more meaningful and either standard or fast generally occurs.
+            //CFK: MainLog.Instance.Verbose("MAP", "World map request for range (" + xmin + "," + ymin + ")..(" + xmax + "," + ymax + ")");
 
             XmlRpcResponse response = new XmlRpcResponse();
             Hashtable responseData = new Hashtable();
@@ -509,8 +510,8 @@ namespace OpenSim.Grid.GridServer
 
                     simProfileList.Add(simProfileBlock);
                 }
-                MainLog.Instance.Verbose("MAP", "World map request processed, returned " + simProfileList.Count.ToString() +
-                                         " region(s) in range via FastMode");
+                MainLog.Instance.Verbose("MAP", "Fast map" + simProfileList.Count.ToString() +
+                                         " @ (" + xmin + "," + ymin + ")..(" + xmax + "," + ymax + ")" );
             }
             else
             {
@@ -544,8 +545,8 @@ namespace OpenSim.Grid.GridServer
                         }
                     }
                 }
-                MainLog.Instance.Verbose("MAP", "World map request processed, returned " + simProfileList.Count.ToString() +
-                                         " region(s) in range via Standard Mode");
+                MainLog.Instance.Verbose("MAP", "Std map" + simProfileList.Count.ToString() +
+                                         " @ (" + xmin + "," + ymin + ")..(" + xmax + "," + ymax + ")");
             }
 
             responseData["sim-profiles"] = simProfileList;
-- 
cgit v1.1