aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/ServerBase.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-03-14 23:39:15 +0000
committerJustin Clark-Casey (justincc)2013-03-14 23:39:15 +0000
commit12900ea84e699f84943009f2d3218fcf5013c6f9 (patch)
tree1f697a74d016266b9af8b070a9b703398edd81b6 /OpenSim/Framework/Servers/ServerBase.cs
parentrefactor: minor cleanup in osGetAvatarList() (diff)
downloadopensim-SC_OLD-12900ea84e699f84943009f2d3218fcf5013c6f9.zip
opensim-SC_OLD-12900ea84e699f84943009f2d3218fcf5013c6f9.tar.gz
opensim-SC_OLD-12900ea84e699f84943009f2d3218fcf5013c6f9.tar.bz2
opensim-SC_OLD-12900ea84e699f84943009f2d3218fcf5013c6f9.tar.xz
Log same environment information to Robust log as is already done for simulator logs, for debug purposes
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Servers/ServerBase.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/OpenSim/Framework/Servers/ServerBase.cs b/OpenSim/Framework/Servers/ServerBase.cs
index 47baac8..657444c 100644
--- a/OpenSim/Framework/Servers/ServerBase.cs
+++ b/OpenSim/Framework/Servers/ServerBase.cs
@@ -113,6 +113,26 @@ namespace OpenSim.Framework.Servers
113 } 113 }
114 } 114 }
115 115
116 /// <summary>
117 /// Log information about the circumstances in which we're running (OpenSimulator version number, CLR details,
118 /// etc.).
119 /// </summary>
120 public void LogEnvironmentInformation()
121 {
122 // FIXME: This should be done down in ServerBase but we need to sort out and refactor the log4net
123 // XmlConfigurator calls first accross servers.
124 m_log.InfoFormat("[SERVER BASE]: Starting in {0}", m_startupDirectory);
125
126 m_log.InfoFormat("[SERVER BASE]: OpenSimulator version: {0}", m_version);
127
128 // clr version potentially is more confusing than helpful, since it doesn't tell us if we're running under Mono/MS .NET and
129 // the clr version number doesn't match the project version number under Mono.
130 //m_log.Info("[STARTUP]: Virtual machine runtime version: " + Environment.Version + Environment.NewLine);
131 m_log.InfoFormat(
132 "[SERVER BASE]: Operating system version: {0}, .NET platform {1}, {2}-bit",
133 Environment.OSVersion, Environment.OSVersion.Platform, Util.Is64BitProcess() ? "64" : "32");
134 }
135
116 public void RegisterCommonAppenders(IConfig startupConfig) 136 public void RegisterCommonAppenders(IConfig startupConfig)
117 { 137 {
118 ILoggerRepository repository = LogManager.GetRepository(); 138 ILoggerRepository repository = LogManager.GetRepository();