From a58b0eb80b3be58508dd2fc1fea418b99b35221e Mon Sep 17 00:00:00 2001 From: Nav Date: Sat, 22 Jan 2022 16:51:21 +0000 Subject: [PATCH] Print version number on startup, when debug logging is enabled --- src/Application.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Application.cpp b/src/Application.cpp index d50397d8..a8f037e7 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -96,6 +96,8 @@ void Application::startup() { this->loadProjectConfiguration(); Logger::configure(this->projectConfig.value()); + Logger::debug("Bloom version: " + Application::VERSION.toString()); + this->blockAllSignalsOnCurrentThread(); this->startSignalHandler();