From 667da0de3f8545296145205ae2145646219c4ed3 Mon Sep 17 00:00:00 2001 From: kervala Date: Tue, 7 Jun 2016 13:21:45 +0200 Subject: [PATCH] Changed: More details on OS and machine in client.log --- code/ryzom/client/src/init.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/ryzom/client/src/init.cpp b/code/ryzom/client/src/init.cpp index 321fb8f1e..666e86760 100644 --- a/code/ryzom/client/src/init.cpp +++ b/code/ryzom/client/src/init.cpp @@ -821,7 +821,10 @@ void initLog() AssertLog->addDisplayer (ClientLogDisplayer); // Display the client version. - nlinfo("RYZOM VERSION : %s", getDebugVersion().c_str()); + nlinfo("RYZOM VERSION: %s", getDebugVersion().c_str()); + nlinfo("Memory: %s/%s", bytesToHumanReadable(CSystemInfo::availablePhysicalMemory()).c_str(), bytesToHumanReadable(CSystemInfo::totalPhysicalMemory()).c_str()); + nlinfo("OS: %s", CSystemInfo::getOS().c_str()); + nlinfo("Processor: %s", CSystemInfo::getProc().c_str()); #ifdef NL_OS_MAC struct rlimit rlp, rlp2, rlp3;