diff options
author | Justin Clark-Casey (justincc) | 2010-05-28 18:30:33 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-05-28 18:30:33 +0100 |
commit | 565db4635f0e99cbd647cc8ba0ad963e2d1869fc (patch) | |
tree | b4c4c4f8541b13001139caa0d1055e62a48f0edb /OpenSim/Framework | |
parent | Simplify AddFullUpdateToAvatars()/AddPartialUpdateToAvatars() by calling the ... (diff) | |
download | opensim-SC_OLD-565db4635f0e99cbd647cc8ba0ad963e2d1869fc.zip opensim-SC_OLD-565db4635f0e99cbd647cc8ba0ad963e2d1869fc.tar.gz opensim-SC_OLD-565db4635f0e99cbd647cc8ba0ad963e2d1869fc.tar.bz2 opensim-SC_OLD-565db4635f0e99cbd647cc8ba0ad963e2d1869fc.tar.xz |
add a smidgen more log debug information in the form of the operating system version
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Servers/BaseOpenSimServer.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Framework/Servers/BaseOpenSimServer.cs b/OpenSim/Framework/Servers/BaseOpenSimServer.cs index 655df9d..f0f8d01 100644 --- a/OpenSim/Framework/Servers/BaseOpenSimServer.cs +++ b/OpenSim/Framework/Servers/BaseOpenSimServer.cs | |||
@@ -286,7 +286,11 @@ namespace OpenSim.Framework.Servers | |||
286 | 286 | ||
287 | EnhanceVersionInformation(); | 287 | EnhanceVersionInformation(); |
288 | 288 | ||
289 | m_log.Info("[STARTUP]: Version: " + m_version + "\n"); | 289 | m_log.Info("[STARTUP]: OpenSimulator version: " + m_version + Environment.NewLine); |
290 | // clr version potentially is more confusing than helpful, since it doesn't tell us if we're running under Mono/MS .NET and | ||
291 | // the clr version number doesn't match the project version number under Mono. | ||
292 | //m_log.Info("[STARTUP]: Virtual machine runtime version: " + Environment.Version + Environment.NewLine); | ||
293 | m_log.Info("[STARTUP]: Operating system version: " + Environment.OSVersion + Environment.NewLine); | ||
290 | 294 | ||
291 | StartupSpecific(); | 295 | StartupSpecific(); |
292 | 296 | ||