From c7666b065acd63a9dad2e810e8f9dfd8dd272aaa Mon Sep 17 00:00:00 2001 From: Quantum Date: Mon, 30 Aug 2021 20:12:35 -0400 Subject: [PATCH] [client] main: print out CPU information on startup --- client/src/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/src/main.c b/client/src/main.c index 07ef8a16..b2b91a7a 100644 --- a/client/src/main.c +++ b/client/src/main.c @@ -49,6 +49,7 @@ #include "common/time.h" #include "common/version.h" #include "common/paths.h" +#include "common/cpuinfo.h" #include "core.h" #include "app.h" @@ -1281,6 +1282,7 @@ int main(int argc, char * argv[]) DEBUG_INFO("Looking Glass (%s)", BUILD_VERSION); DEBUG_INFO("Locking Method: " LG_LOCK_MODE); + lgDebugCPU(); if (!installCrashHandler("/proc/self/exe")) DEBUG_WARN("Failed to install the crash handler");