From 6866dc52977d541d04aa2ec84dcdb3c21f0a754b Mon Sep 17 00:00:00 2001 From: Dalien Talbot Date: Sun, 18 Nov 2007 06:16:39 +0000 Subject: [PATCH] Additional debugging output to see for what coordinates is the worldmap requested (crash is gone, but tons of worldmap requests) --- OpenSim/Grid/GridServer/GridManager.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/OpenSim/Grid/GridServer/GridManager.cs b/OpenSim/Grid/GridServer/GridManager.cs index 0d966dd656..2e040525f3 100644 --- a/OpenSim/Grid/GridServer/GridManager.cs +++ b/OpenSim/Grid/GridServer/GridManager.cs @@ -466,6 +466,7 @@ namespace OpenSim.Grid.GridServer { ymax = (Int32) requestData["ymax"]; } + MainLog.Instance.Verbose("World map request for range (" + xmin + "," + ymin + ")..(" + xmax + "," + ymax + ")"); XmlRpcResponse response = new XmlRpcResponse(); Hashtable responseData = new Hashtable(); @@ -742,4 +743,4 @@ namespace OpenSim.Grid.GridServer } } } -} \ No newline at end of file +}