diff options
author | Justin Clark-Casey (justincc) | 2013-03-14 23:39:15 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-03-14 23:39:15 +0000 |
commit | 12900ea84e699f84943009f2d3218fcf5013c6f9 (patch) | |
tree | 1f697a74d016266b9af8b070a9b703398edd81b6 /OpenSim/Framework/Servers/BaseOpenSimServer.cs | |
parent | refactor: minor cleanup in osGetAvatarList() (diff) | |
download | opensim-SC-12900ea84e699f84943009f2d3218fcf5013c6f9.zip opensim-SC-12900ea84e699f84943009f2d3218fcf5013c6f9.tar.gz opensim-SC-12900ea84e699f84943009f2d3218fcf5013c6f9.tar.bz2 opensim-SC-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/BaseOpenSimServer.cs | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/OpenSim/Framework/Servers/BaseOpenSimServer.cs b/OpenSim/Framework/Servers/BaseOpenSimServer.cs index c0dc907..035b3ad 100644 --- a/OpenSim/Framework/Servers/BaseOpenSimServer.cs +++ b/OpenSim/Framework/Servers/BaseOpenSimServer.cs | |||
@@ -133,17 +133,7 @@ namespace OpenSim.Framework.Servers | |||
133 | /// Performs initialisation of the scene, such as loading configuration from disk. | 133 | /// Performs initialisation of the scene, such as loading configuration from disk. |
134 | /// </summary> | 134 | /// </summary> |
135 | public virtual void Startup() | 135 | public virtual void Startup() |
136 | { | 136 | { |
137 | m_log.Info("[STARTUP]: Beginning startup processing"); | ||
138 | |||
139 | m_log.Info("[STARTUP]: OpenSimulator version: " + m_version + Environment.NewLine); | ||
140 | // clr version potentially is more confusing than helpful, since it doesn't tell us if we're running under Mono/MS .NET and | ||
141 | // the clr version number doesn't match the project version number under Mono. | ||
142 | //m_log.Info("[STARTUP]: Virtual machine runtime version: " + Environment.Version + Environment.NewLine); | ||
143 | m_log.InfoFormat( | ||
144 | "[STARTUP]: Operating system version: {0}, .NET platform {1}, {2}-bit\n", | ||
145 | Environment.OSVersion, Environment.OSVersion.Platform, Util.Is64BitProcess() ? "64" : "32"); | ||
146 | |||
147 | StartupSpecific(); | 137 | StartupSpecific(); |
148 | 138 | ||
149 | TimeSpan timeTaken = DateTime.Now - m_startuptime; | 139 | TimeSpan timeTaken = DateTime.Now - m_startuptime; |