From 490fdd92093ea91c242e8c49d8d8eb5c00c6952d Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Wed, 20 Dec 2023 16:50:23 +0100 Subject: [PATCH] Minor: add some debug output (versions, build times) --- src/hwapi.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/hwapi.cpp b/src/hwapi.cpp index df17527..e748937 100644 --- a/src/hwapi.cpp +++ b/src/hwapi.cpp @@ -40,6 +40,12 @@ static uint8_t bl_startupStep; hwapi::hwapi(QWidget *parent) : QObject(parent) { // constructor + qCritical() << " hwapi::hwapi() APP_VERSION:" << APP_VERSION; + qCritical() << " hwapi::hwapi() APP_BUILD_DATE:" << APP_BUILD_DATE; + qCritical() << " hwapi::hwapi() APP_BUILD_TIME:" << APP_BUILD_TIME; + qCritical() << " hwapi::hwapi() APP_EXTENDED_VERSION:" << APP_EXTENDED_VERSION; + qCritical() << "hwapi::hwapi() APP_EXTENDED_VERSION_LIB:" << APP_EXTENDED_VERSION_LIB; + // create or attach shared memory segment m_sharedMem = SharedMem::getShm(sizeof(SharedMem));