aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Handlers/Grid
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-08-11 23:17:29 +0100
committerJustin Clark-Casey (justincc)2010-08-11 23:17:29 +0100
commit576faee203126e42b80050867da3ae6769009f06 (patch)
tree72d579263642b1aa5e7b9409d43a77d2c5cc671a /OpenSim/Server/Handlers/Grid
parentminor: change "no [GridInfo] config" warning to refer to "configuration files... (diff)
downloadopensim-SC_OLD-576faee203126e42b80050867da3ae6769009f06.zip
opensim-SC_OLD-576faee203126e42b80050867da3ae6769009f06.tar.gz
opensim-SC_OLD-576faee203126e42b80050867da3ae6769009f06.tar.bz2
opensim-SC_OLD-576faee203126e42b80050867da3ae6769009f06.tar.xz
minor: change some logging levels
Diffstat (limited to 'OpenSim/Server/Handlers/Grid')
-rw-r--r--OpenSim/Server/Handlers/Grid/GridInfoHandlers.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Server/Handlers/Grid/GridInfoHandlers.cs b/OpenSim/Server/Handlers/Grid/GridInfoHandlers.cs
index b07d447..cdab49e 100644
--- a/OpenSim/Server/Handlers/Grid/GridInfoHandlers.cs
+++ b/OpenSim/Server/Handlers/Grid/GridInfoHandlers.cs
@@ -102,11 +102,10 @@ 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()
@@ -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 {