diff options
Diffstat (limited to 'OpenSim/Framework/Console/RemoteConsole.cs')
-rw-r--r-- | OpenSim/Framework/Console/RemoteConsole.cs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/OpenSim/Framework/Console/RemoteConsole.cs b/OpenSim/Framework/Console/RemoteConsole.cs index da8556a..67bff4c 100644 --- a/OpenSim/Framework/Console/RemoteConsole.cs +++ b/OpenSim/Framework/Console/RemoteConsole.cs | |||
@@ -50,8 +50,6 @@ namespace OpenSim.Framework.Console | |||
50 | // | 50 | // |
51 | public class RemoteConsole : CommandConsole | 51 | public class RemoteConsole : CommandConsole |
52 | { | 52 | { |
53 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | ||
54 | |||
55 | private IHttpServer m_Server = null; | 53 | private IHttpServer m_Server = null; |
56 | private IConfigSource m_Config = null; | 54 | private IConfigSource m_Config = null; |
57 | 55 | ||
@@ -217,6 +215,12 @@ namespace OpenSim.Framework.Console | |||
217 | id.AppendChild(xmldoc.CreateTextNode(sessionID.ToString())); | 215 | id.AppendChild(xmldoc.CreateTextNode(sessionID.ToString())); |
218 | 216 | ||
219 | rootElement.AppendChild(id); | 217 | rootElement.AppendChild(id); |
218 | |||
219 | XmlElement prompt = xmldoc.CreateElement("", "Prompt", ""); | ||
220 | prompt.AppendChild(xmldoc.CreateTextNode(DefaultPrompt)); | ||
221 | |||
222 | rootElement.AppendChild(prompt); | ||
223 | |||
220 | rootElement.AppendChild(MainConsole.Instance.Commands.GetXml(xmldoc)); | 224 | rootElement.AppendChild(MainConsole.Instance.Commands.GetXml(xmldoc)); |
221 | 225 | ||
222 | reply["str_response_string"] = xmldoc.InnerXml; | 226 | reply["str_response_string"] = xmldoc.InnerXml; |