diff options
author | Justin Clark-Casey (justincc) | 2011-03-25 23:29:06 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-03-25 23:29:06 +0000 |
commit | 3a55d59b45dc0cbff938f0101bb6338bd8949e86 (patch) | |
tree | 93ee837ab9adaa03b782d513b934e54c17b66275 /OpenSim/Framework | |
parent | Log the xml/ini regions config files that opensim loads from, and the regions... (diff) | |
download | opensim-SC_OLD-3a55d59b45dc0cbff938f0101bb6338bd8949e86.zip opensim-SC_OLD-3a55d59b45dc0cbff938f0101bb6338bd8949e86.tar.gz opensim-SC_OLD-3a55d59b45dc0cbff938f0101bb6338bd8949e86.tar.bz2 opensim-SC_OLD-3a55d59b45dc0cbff938f0101bb6338bd8949e86.tar.xz |
in region web loader, print out url that config is being loaded from (this wasn't being done anywhere).
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/RegionLoader/Web/RegionLoaderWebServer.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/RegionLoader/Web/RegionLoaderWebServer.cs b/OpenSim/Framework/RegionLoader/Web/RegionLoaderWebServer.cs index 0ec4af5..de4898a 100644 --- a/OpenSim/Framework/RegionLoader/Web/RegionLoaderWebServer.cs +++ b/OpenSim/Framework/RegionLoader/Web/RegionLoaderWebServer.cs | |||
@@ -66,9 +66,9 @@ namespace OpenSim.Framework.RegionLoader.Web | |||
66 | { | 66 | { |
67 | HttpWebRequest webRequest = (HttpWebRequest) WebRequest.Create(url); | 67 | HttpWebRequest webRequest = (HttpWebRequest) WebRequest.Create(url); |
68 | webRequest.Timeout = 30000; //30 Second Timeout | 68 | webRequest.Timeout = 30000; //30 Second Timeout |
69 | m_log.Debug("[WEBLOADER]: Sending Download Request..."); | 69 | m_log.DebugFormat("[WEBLOADER]: Sending download request to {0}", url); |
70 | HttpWebResponse webResponse = (HttpWebResponse) webRequest.GetResponse(); | 70 | HttpWebResponse webResponse = (HttpWebResponse) webRequest.GetResponse(); |
71 | m_log.Debug("[WEBLOADER]: Downloading Region Information From Remote Server..."); | 71 | m_log.Debug("[WEBLOADER]: Downloading region information..."); |
72 | StreamReader reader = new StreamReader(webResponse.GetResponseStream()); | 72 | StreamReader reader = new StreamReader(webResponse.GetResponseStream()); |
73 | string xmlSource = String.Empty; | 73 | string xmlSource = String.Empty; |
74 | string tempStr = reader.ReadLine(); | 74 | string tempStr = reader.ReadLine(); |