diff options
-rw-r--r-- | OpenSim/Grid/GridServer/GridManager.cs | 11 |
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; |