From 2482f95a3dcc6946feb9fc12a1ed8a357987c36a Mon Sep 17 00:00:00 2001 From: Felix Weiglhofer <weiglhofer@fias.uni-frankfurt.de> Date: Tue, 30 May 2023 12:21:33 +0000 Subject: [PATCH] cbmreco: Log build infos. --- reco/app/cbmreco/main.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/reco/app/cbmreco/main.cxx b/reco/app/cbmreco/main.cxx index 35ab5864da..b7a84cd7db 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] << " "; -- GitLab