Skip to content

Commit

Permalink
Change a warning message to info
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Dec 13, 2024
1 parent 6f98928 commit 77df434
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions k4FWCore/components/Writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,8 @@ class Writer final : public Gaudi::Functional::Consumer<void(const EventContext&
// This can happen for objects that are not collections like in the
// MarlinWrapper for converter maps or a LCEvent, or, in general,
// anything else
warning() << "Object in the store with name " << coll
<< " does not look like a collection so it can not be written to the output file" << endmsg;
info() << "Object in the store with name " << coll
<< " does not look like a collection so it can not be written to the output file" << endmsg;
m_collectionsToSave.erase(std::remove(m_collectionsToSave.begin(), m_collectionsToSave.end(), coll),
m_collectionsToSave.end());
m_collectionsToAdd.erase(std::remove(m_collectionsToAdd.begin(), m_collectionsToAdd.end(), coll),
Expand Down

0 comments on commit 77df434

Please sign in to comment.