From 5edbd9b9b850866573ef52ec4790ef4a9a2cce0b Mon Sep 17 00:00:00 2001 From: Rye Mutt <rye@alchemyviewer.org> Date: Sun, 4 Jul 2021 17:28:48 -0400 Subject: [PATCH] Fix cpu log output and add stepping --- indra/llcommon/llprocessor.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/indra/llcommon/llprocessor.cpp b/indra/llcommon/llprocessor.cpp index c7e1bf509c5..22ce47d96b2 100644 --- a/indra/llcommon/llprocessor.cpp +++ b/indra/llcommon/llprocessor.cpp @@ -283,11 +283,12 @@ class LLProcessorInfoImpl out << "//////////////////////////" << std::endl; out << "Processor Name: " << getCPUBrandName() << std::endl; out << "Frequency: " << getCPUFrequency() << " MHz" << std::endl; - out << "Vendor: " << getInfo(eVendor, "Unset vendor").asString() << std::endl; + out << "Vendor: " << getInfo(eVendor, "Unset vendor").asString() << std::endl; out << "Family: " << getCPUFamilyName() << " (" << getInfo(eFamily, 0) << ")" << std::endl; out << "Extended family: " << getInfo(eExtendedFamily, 0) << std::endl; out << "Model: " << getInfo(eModel, 0) << std::endl; out << "Extended model: " << getInfo(eExtendedModel, 0) << std::endl; + out << "Stepping: " << getInfo(eStepping, 0) << std::endl; out << "Type: " << getInfo(eType, 0) << std::endl; out << "Brand ID: " << getInfo(eBrandID, 0) << std::endl; out << std::endl; -- GitLab