diff --git a/reco/app/cbmreco/main.cxx b/reco/app/cbmreco/main.cxx
index 35ab5864da26fd9e70c9d75524d75614266c196b..b7a84cd7db67fbfa4cad50ee2935446d3ea4adf8 100644
--- a/reco/app/cbmreco/main.cxx
+++ b/reco/app/cbmreco/main.cxx
@@ -8,6 +8,7 @@
 
 #include <xpu/host.h>
 
+#include "BuildInfo.h"
 #include "Options.h"
 #include "Reco.h"
 
@@ -32,7 +33,8 @@ int main(int argc, char** argv)
   xpu::initialize(settings);
   xpu::preload<GPUReco>();
 
-  // LOG(info) << "CORE buildType=" << BuildInfo::BUILD_TYPE << " gpuDebug=" << BuildInfo::GPU_DEBUG << " commit=" << BuildInfo::GIT_HASH;
+  L_(info) << "CBMRECO buildType=" << BuildInfo::BUILD_TYPE << " gpuDebug=" << BuildInfo::GPU_DEBUG
+           << " commit=" << BuildInfo::GIT_HASH;
   std::stringstream ss;
   for (int i = 0; i < argc; i++) {
     ss << argv[i] << " ";