From deaf618520a444b48b267cb898917f4391b92424 Mon Sep 17 00:00:00 2001 From: Artem Romanovich Date: Sat, 9 Mar 2024 00:21:57 +0300 Subject: [PATCH] added commit hash in logger --- client/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/main.cpp b/client/main.cpp index 2b0e264b..54d26bdb 100644 --- a/client/main.cpp +++ b/client/main.cpp @@ -61,7 +61,7 @@ int main(int argc, char *argv[]) if (doExec) { app.init(); - qInfo().noquote() << QString("Started %1 version %2").arg(APPLICATION_NAME, APP_VERSION); + qInfo().noquote() << QString("Started %1 version %2 %3").arg(APPLICATION_NAME, APP_VERSION, GIT_COMMIT_HASH); qInfo().noquote() << QString("%1 (%2)").arg(QSysInfo::prettyProductName(), QSysInfo::currentCpuArchitecture()); return app.exec();