aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorTeravus Ovares2008-01-23 22:30:12 +0000
committerTeravus Ovares2008-01-23 22:30:12 +0000
commitadf05e682e6675f6eb0c77c488a6efaeff3525a0 (patch)
treeb8ea7625ae5e4a324b39e5611637b0184552908a /OpenSim
parent* When Scene loads, added a platform string print out for testing purposes. ... (diff)
downloadopensim-SC_OLD-adf05e682e6675f6eb0c77c488a6efaeff3525a0.zip
opensim-SC_OLD-adf05e682e6675f6eb0c77c488a6efaeff3525a0.tar.gz
opensim-SC_OLD-adf05e682e6675f6eb0c77c488a6efaeff3525a0.tar.bz2
opensim-SC_OLD-adf05e682e6675f6eb0c77c488a6efaeff3525a0.tar.xz
* One more try at specifically identifying Debian from the code.
* There's 3 platform lines now. Would someone running debian and/or Fedora core please try this revision out and send me the three [PLATFORM] lines?
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index f7e5d62..52d0822 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -282,6 +282,14 @@ namespace OpenSim.Region.Environment.Scenes
282 m_statsReporter.OnSendStatsResult += SendSimStatsPackets; 282 m_statsReporter.OnSendStatsResult += SendSimStatsPackets;
283 MainLog.Instance.Verbose("PLATFORM", System.Environment.OSVersion.Platform.ToString()); 283 MainLog.Instance.Verbose("PLATFORM", System.Environment.OSVersion.Platform.ToString());
284 MainLog.Instance.Verbose("PLATFORM", System.Environment.OSVersion.ToString()); 284 MainLog.Instance.Verbose("PLATFORM", System.Environment.OSVersion.ToString());
285 try
286 {
287 MainLog.Instance.Verbose("PLATRORM", "TERM:" + System.Environment.GetEnvironmentVariable("TERM"));
288 }
289 catch (System.Exception)
290 {
291 MainLog.Instance.Verbose("PLATFORM", "No TERM Environment Variable");
292 }
285 } 293 }
286 294
287 #endregion 295 #endregion