From: sr55 Date: Fri, 13 Jul 2018 22:09:01 +0000 (+0100) Subject: WinGui: Remove CPU information from log header. It's also in the main log body. X-Git-Tag: 1.2.0~231 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3c303e2f2bcd429c07a558418b4a34a1061d908b;p=handbrake WinGui: Remove CPU information from log header. It's also in the main log body. --- diff --git a/win/CS/HandBrakeWPF/Utilities/GeneralUtilities.cs b/win/CS/HandBrakeWPF/Utilities/GeneralUtilities.cs index f03d16f2c..c80a12408 100644 --- a/win/CS/HandBrakeWPF/Utilities/GeneralUtilities.cs +++ b/win/CS/HandBrakeWPF/Utilities/GeneralUtilities.cs @@ -109,7 +109,6 @@ namespace HandBrakeWPF.Utilities logHeader.AppendLine(string.Format("HandBrake {0}", VersionHelper.GetVersion())); logHeader.AppendLine(string.Format("OS: {0}", Environment.OSVersion)); - logHeader.AppendLine(string.Format("CPU: {0}", SystemInfo.GetCpuCount)); logHeader.AppendLine(string.Format("Ram: {0} MB, ", SystemInfo.TotalPhysicalMemory)); logHeader.AppendLine(string.Format("GPU Information:{0}{1}", Environment.NewLine, gpuBuilder.ToString().TrimEnd())); logHeader.AppendLine(string.Format("Screen: {0}x{1}", SystemInfo.ScreenBounds.Bounds.Width, SystemInfo.ScreenBounds.Bounds.Height));