aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenGridServices.GridServer/Main.cs
diff options
context:
space:
mode:
authorMW2007-04-26 17:50:25 +0000
committerMW2007-04-26 17:50:25 +0000
commit14a4ff308190af61783f1c4c686bcfc3dfa07a4f (patch)
tree70e9c899bfcd1e04399771ff25a89bebdf866867 /OpenGridServices.GridServer/Main.cs
parentAt last: avatar-template.dat is no more (diff)
downloadopensim-SC_OLD-14a4ff308190af61783f1c4c686bcfc3dfa07a4f.zip
opensim-SC_OLD-14a4ff308190af61783f1c4c686bcfc3dfa07a4f.tar.gz
opensim-SC_OLD-14a4ff308190af61783f1c4c686bcfc3dfa07a4f.tar.bz2
opensim-SC_OLD-14a4ff308190af61783f1c4c686bcfc3dfa07a4f.tar.xz
added just what opensim needs...yet another command line option: -noverbose . cut down on the system console output (should really be stopping it all but not all output is going through OpenSim.Framework.Console)
Diffstat (limited to '')
-rw-r--r--OpenGridServices.GridServer/Main.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenGridServices.GridServer/Main.cs b/OpenGridServices.GridServer/Main.cs
index 55e2b00..69cba9c 100644
--- a/OpenGridServices.GridServer/Main.cs
+++ b/OpenGridServices.GridServer/Main.cs
@@ -80,7 +80,7 @@ namespace OpenGridServices.GridServer
80 80
81 private OpenGrid_Main() 81 private OpenGrid_Main()
82 { 82 {
83 m_console = new ConsoleBase("opengrid-gridserver-console.log", "OpenGrid", this); 83 m_console = new ConsoleBase("opengrid-gridserver-console.log", "OpenGrid", this, false);
84 MainConsole.Instance = m_console; 84 MainConsole.Instance = m_console;
85 } 85 }
86 86
@@ -101,9 +101,9 @@ namespace OpenGridServices.GridServer
101 101
102 httpServer.AddRestHandler("GET", "/sims/", m_simProfileManager.RestGetSimMethod); 102 httpServer.AddRestHandler("GET", "/sims/", m_simProfileManager.RestGetSimMethod);
103 httpServer.AddRestHandler("POST", "/sims/", m_simProfileManager.RestSetSimMethod); 103 httpServer.AddRestHandler("POST", "/sims/", m_simProfileManager.RestSetSimMethod);
104 httpServer.AddRestHandler("GET", "/regions/", m_simProfileManager.RestGetRegionMethod); 104 httpServer.AddRestHandler("GET", "/regions/", m_simProfileManager.RestGetRegionMethod);
105 httpServer.AddRestHandler("POST", "/regions/", m_simProfileManager.RestSetRegionMethod); 105 httpServer.AddRestHandler("POST", "/regions/", m_simProfileManager.RestSetRegionMethod);
106 106
107 107
108 // lbsa71 : This code snippet taken from old http server. 108 // lbsa71 : This code snippet taken from old http server.
109 // I have no idea what this was supposed to do - looks like an infinite recursion to me. 109 // I have no idea what this was supposed to do - looks like an infinite recursion to me.