aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/GridServer/GridManager.cs
diff options
context:
space:
mode:
authorCharles Krinke2007-12-23 01:09:21 +0000
committerCharles Krinke2007-12-23 01:09:21 +0000
commit1a679c8cd9a8473923f68b0c1b494212e35ac644 (patch)
treec99b6cc09cdc8176a658afc0b4232b1fff02a070 /OpenSim/Grid/GridServer/GridManager.cs
parentThank you, Alondria for: (diff)
downloadopensim-SC_OLD-1a679c8cd9a8473923f68b0c1b494212e35ac644.zip
opensim-SC_OLD-1a679c8cd9a8473923f68b0c1b494212e35ac644.tar.gz
opensim-SC_OLD-1a679c8cd9a8473923f68b0c1b494212e35ac644.tar.bz2
opensim-SC_OLD-1a679c8cd9a8473923f68b0c1b494212e35ac644.tar.xz
Simplify GridServer mainmap log messages.
Diffstat (limited to 'OpenSim/Grid/GridServer/GridManager.cs')
-rw-r--r--OpenSim/Grid/GridServer/GridManager.cs11
1 files 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
471 { 471 {
472 ymax = (Int32) requestData["ymax"]; 472 ymax = (Int32) requestData["ymax"];
473 } 473 }
474 MainLog.Instance.Verbose("MAP", "World map request for range (" + xmin + "," + ymin + ")..(" + xmax + "," + ymax + ")"); 474 //CFK: The second MainLog is more meaningful and either standard or fast generally occurs.
475 //CFK: MainLog.Instance.Verbose("MAP", "World map request for range (" + xmin + "," + ymin + ")..(" + xmax + "," + ymax + ")");
475 476
476 XmlRpcResponse response = new XmlRpcResponse(); 477 XmlRpcResponse response = new XmlRpcResponse();
477 Hashtable responseData = new Hashtable(); 478 Hashtable responseData = new Hashtable();
@@ -509,8 +510,8 @@ namespace OpenSim.Grid.GridServer
509 510
510 simProfileList.Add(simProfileBlock); 511 simProfileList.Add(simProfileBlock);
511 } 512 }
512 MainLog.Instance.Verbose("MAP", "World map request processed, returned " + simProfileList.Count.ToString() + 513 MainLog.Instance.Verbose("MAP", "Fast map" + simProfileList.Count.ToString() +
513 " region(s) in range via FastMode"); 514 " @ (" + xmin + "," + ymin + ")..(" + xmax + "," + ymax + ")" );
514 } 515 }
515 else 516 else
516 { 517 {
@@ -544,8 +545,8 @@ namespace OpenSim.Grid.GridServer
544 } 545 }
545 } 546 }
546 } 547 }
547 MainLog.Instance.Verbose("MAP", "World map request processed, returned " + simProfileList.Count.ToString() + 548 MainLog.Instance.Verbose("MAP", "Std map" + simProfileList.Count.ToString() +
548 " region(s) in range via Standard Mode"); 549 " @ (" + xmin + "," + ymin + ")..(" + xmax + "," + ymax + ")");
549 } 550 }
550 551
551 responseData["sim-profiles"] = simProfileList; 552 responseData["sim-profiles"] = simProfileList;