Add GetSystemInfo to PingController

This commit is contained in:
2025-04-09 12:16:04 -04:00
parent 170b11bb7d
commit b114ca5855

View File

@@ -20,7 +20,7 @@ namespace MarketDataServer.Controllers
public String GetSystemInfo()
{
MDTrace.WriteLine(LogLevel.DEBUG,String.Format("[{0:G}][PingController::GetSystemInfo]", DateTime.Now));
return Environment.VersionString.;
return Environment.OSVersion.VersionString;
}
}
}