Skip to content

Commit 73b40f3

Browse files
authored
fix: reduce verbosity of ITK module splitter. (acts-project#1976)
Reduce the verbosity of the ITK module splitter from INFO to DEBUG. This addresses part of issue acts-project#1975 i.e. the number of messages is reduced.
1 parent 06af656 commit 73b40f3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Examples/Detectors/TGeoDetector/src/TGeoITkModuleSplitter.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ ActsExamples::TGeoITkModuleSplitter::split(
5656
for (const std::tuple<std::regex, std::string, bool>& split_category :
5757
m_splitCategories) {
5858
if (std::regex_match(sensorName, std::get<0>(split_category))) {
59-
ACTS_INFO("Splitting " +
60-
std::string(category_names[std::get<2>(split_category)]) +
61-
" node " + sensorName + " using split ranges of category " +
62-
std::get<1>(split_category));
59+
ACTS_DEBUG("Splitting " +
60+
std::string(category_names[std::get<2>(split_category)]) +
61+
" node " + sensorName + " using split ranges of category " +
62+
std::get<1>(split_category));
6363
if (!std::get<2>(split_category)) {
6464
return ActsExamples::TGeoITkModuleSplitter::splitBarrelModule(
6565
gctx, detElement, m_cfg.barrelMap.at(std::get<1>(split_category)));

0 commit comments

Comments
 (0)