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);