From 0f505f56ad5d5fc1cb66c3c3325c40e366f48529 Mon Sep 17 00:00:00 2001 From: stefnotch Date: Sun, 20 Jun 2021 19:07:39 +0200 Subject: [PATCH] Improve privacy We don't need the computer name or user name in the log files by default --- Source/Engine/Platform/Base/PlatformBase.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Engine/Platform/Base/PlatformBase.cpp b/Source/Engine/Platform/Base/PlatformBase.cpp index f6aa0e2d6..1c5ad0e09 100644 --- a/Source/Engine/Platform/Base/PlatformBase.cpp +++ b/Source/Engine/Platform/Base/PlatformBase.cpp @@ -130,8 +130,8 @@ bool PlatformBase::Init() void PlatformBase::LogInfo() { - LOG(Info, "Computer name: {0}", Platform::GetComputerName()); - LOG(Info, "User name: {0}", Platform::GetUserName()); + // LOG(Info, "Computer name: {0}", Platform::GetComputerName()); + // LOG(Info, "User name: {0}", Platform::GetUserName()); const CPUInfo cpuInfo = Platform::GetCPUInfo(); LOG(Info, "CPU package count: {0}, Core count: {1}, Logical processors: {2}", cpuInfo.ProcessorPackageCount, cpuInfo.ProcessorCoreCount, cpuInfo.LogicalProcessorCount);