From 956901d46742e80d81d18273848a85200443c6bd Mon Sep 17 00:00:00 2001
From: praisig <praisig@ikf.uni-frankfurt.de>
Date: Wed, 24 Jun 2020 15:57:01 +0200
Subject: [PATCH] CbmTrdParSetGeo set log level fatal if no geoNodes are found

---
 core/detectors/trd/CbmTrdParSetGeo.cxx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/detectors/trd/CbmTrdParSetGeo.cxx b/core/detectors/trd/CbmTrdParSetGeo.cxx
index 043c05a63b..ca3e53bc2b 100644
--- a/core/detectors/trd/CbmTrdParSetGeo.cxx
+++ b/core/detectors/trd/CbmTrdParSetGeo.cxx
@@ -36,8 +36,8 @@ Bool_t CbmTrdParSetGeo::Init()
   TObjArray* nodes = topNode->GetNodes();
   if (!nodes)
   {
-     LOG(error) << "CbmTrdParSetGeo::Init: nodes is null!";
-	 return kFALSE;
+    LOG(fatal) << "CbmTrdParSetGeo::Init: nodes is null!";
+	  return kFALSE;
   }
 
   for (Int_t iNode = 0; iNode < nodes->GetEntriesFast(); iNode++) {
-- 
GitLab