* 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?
ThreadPoolClientBranch
Teravus Ovares 2008-01-23 22:30:12 +00:00
parent 6874beff52
commit adf05e682e
1 changed files with 8 additions and 0 deletions

View File

@ -282,6 +282,14 @@ namespace OpenSim.Region.Environment.Scenes
m_statsReporter.OnSendStatsResult += SendSimStatsPackets;
MainLog.Instance.Verbose("PLATFORM", System.Environment.OSVersion.Platform.ToString());
MainLog.Instance.Verbose("PLATFORM", System.Environment.OSVersion.ToString());
try
{
MainLog.Instance.Verbose("PLATRORM", "TERM:" + System.Environment.GetEnvironmentVariable("TERM"));
}
catch (System.Exception)
{
MainLog.Instance.Verbose("PLATFORM", "No TERM Environment Variable");
}
}
#endregion