aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Handlers/Grid/GridInfoHandlers.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Server/Handlers/Grid/GridInfoHandlers.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/OpenSim/Server/Handlers/Grid/GridInfoHandlers.cs b/OpenSim/Server/Handlers/Grid/GridInfoHandlers.cs
index d1233dc..cdab49e 100644
--- a/OpenSim/Server/Handlers/Grid/GridInfoHandlers.cs
+++ b/OpenSim/Server/Handlers/Grid/GridInfoHandlers.cs
@@ -102,16 +102,15 @@ namespace OpenSim.Server.Handlers.Grid
102 } 102 }
103 catch (Exception) 103 catch (Exception)
104 { 104 {
105 _log.Debug("[GRID INFO SERVICE]: Cannot get grid info from config source, using minimal defaults"); 105 _log.Warn("[GRID INFO SERVICE]: Cannot get grid info from config source, using minimal defaults");
106 } 106 }
107 107
108 _log.DebugFormat("[GRID INFO SERVICE]: Grid info service initialized with {0} keys", _info.Count); 108 _log.DebugFormat("[GRID INFO SERVICE]: Grid info service initialized with {0} keys", _info.Count);
109
110 } 109 }
111 110
112 private void IssueWarning() 111 private void IssueWarning()
113 { 112 {
114 _log.Warn("[GRID INFO SERVICE]: found no [GridInfo] section in your OpenSim.ini"); 113 _log.Warn("[GRID INFO SERVICE]: found no [GridInfo] section in your configuration files");
115 _log.Warn("[GRID INFO SERVICE]: trying to guess sensible defaults, you might want to provide better ones:"); 114 _log.Warn("[GRID INFO SERVICE]: trying to guess sensible defaults, you might want to provide better ones:");
116 115
117 foreach (string k in _info.Keys) 116 foreach (string k in _info.Keys)
@@ -125,7 +124,7 @@ namespace OpenSim.Server.Handlers.Grid
125 XmlRpcResponse response = new XmlRpcResponse(); 124 XmlRpcResponse response = new XmlRpcResponse();
126 Hashtable responseData = new Hashtable(); 125 Hashtable responseData = new Hashtable();
127 126
128 _log.Info("[GRID INFO SERVICE]: Request for grid info"); 127 _log.Debug("[GRID INFO SERVICE]: Request for grid info");
129 128
130 foreach (string k in _info.Keys) 129 foreach (string k in _info.Keys)
131 { 130 {