try fix osx detection than ms keeps breaking

This commit is contained in:
UbitUmarov
2022-11-16 00:20:37 +00:00
parent 18e20d6fdd
commit 8685ebe655
4 changed files with 11 additions and 9 deletions

View File

@@ -140,7 +140,7 @@ namespace OpenSim.Framework.Servers
//m_log.Info("[STARTUP]: Virtual machine runtime version: " + Environment.Version + Environment.NewLine);
m_log.InfoFormat(
"[SERVER BASE]: Operating system version: {0}, .NET platform {1}, {2}-bit",
Environment.OSVersion, Environment.OSVersion.Platform, Environment.Is64BitProcess ? "64" : "32");
Environment.OSVersion, Util.RuntimePlatformStr, Environment.Is64BitProcess ? "64" : "32");
}
public void RegisterCommonAppenders(IConfig startupConfig)