Skip to content

Commit 7f33b79

Browse files
authored
JEventProcessorPODIO: Hide "Persisting collection ..." messages (#2148)
These are many and of low information density. We need to conserve AI tokens. ### Briefly, what does this PR introduce? ### What kind of change does this PR introduce? - [ ] Bug fix (issue #__) - [ ] New feature (issue #__) - [ ] Documentation update - [ ] Other: __ ### Please check if this PR fulfills the following: - [ ] Tests for the changes have been added - [ ] Documentation has been added / updated - [ ] Changes have been communicated to collaborators ### Does this PR introduce breaking changes? What changes might users need to make to their code? No ### Does this PR change default behavior? Yes
1 parent 3adc7b3 commit 7f33b79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/io/podio/JEventProcessorPODIO.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ void JEventProcessorPODIO::FindCollectionsToWrite(const std::shared_ptr<const JE
447447
for (const std::string& col : all_collections) {
448448
if (m_output_exclude_collections.find(col) == m_output_exclude_collections.end()) {
449449
m_collections_to_write.push_back(col);
450-
m_log->info("Persisting collection '{}'", col);
450+
m_log->debug("Persisting collection '{}'", col);
451451
}
452452
}
453453
} else {

0 commit comments

Comments
 (0)