diff options
Diffstat (limited to 'OpenSim/ApplicationPlugins/Rest/Regions/GETRestRegionPlugin.cs')
-rw-r--r-- | OpenSim/ApplicationPlugins/Rest/Regions/GETRestRegionPlugin.cs | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/OpenSim/ApplicationPlugins/Rest/Regions/GETRestRegionPlugin.cs b/OpenSim/ApplicationPlugins/Rest/Regions/GETRestRegionPlugin.cs index 2b006e0..a319a8b 100644 --- a/OpenSim/ApplicationPlugins/Rest/Regions/GETRestRegionPlugin.cs +++ b/OpenSim/ApplicationPlugins/Rest/Regions/GETRestRegionPlugin.cs | |||
@@ -54,10 +54,16 @@ namespace OpenSim.ApplicationPlugins.Rest.Regions | |||
54 | public partial class RestRegionPlugin : RestPlugin | 54 | public partial class RestRegionPlugin : RestPlugin |
55 | { | 55 | { |
56 | #region GET methods | 56 | #region GET methods |
57 | public string GetHandler(string request, string path, string param) | 57 | public string GetHandler(string request, string path, string param, |
58 | OSHttpRequest httpRequest, OSHttpResponse httpResponse) | ||
58 | { | 59 | { |
60 | // foreach (string h in httpRequest.Headers.AllKeys) | ||
61 | // foreach (string v in httpRequest.Headers.GetValues(h)) | ||
62 | // m_log.DebugFormat("{0} IsGod: {1} -> {2}", MsgID, h, v); | ||
63 | |||
64 | MsgID = RequestID; | ||
59 | m_log.DebugFormat("{0} GET path {1} param {2}", MsgID, path, param); | 65 | m_log.DebugFormat("{0} GET path {1} param {2}", MsgID, path, param); |
60 | 66 | ||
61 | try | 67 | try |
62 | { | 68 | { |
63 | // param empty: regions list | 69 | // param empty: regions list |