diff --git a/k4MarlinWrapper/src/components/EDM4hep2Lcio.cpp b/k4MarlinWrapper/src/components/EDM4hep2Lcio.cpp index 2e830b67..3e222613 100644 --- a/k4MarlinWrapper/src/components/EDM4hep2Lcio.cpp +++ b/k4MarlinWrapper/src/components/EDM4hep2Lcio.cpp @@ -411,7 +411,7 @@ StatusCode EDM4hep2LcioTool::convertCollections(lcio::LCEventImpl* lcio_event) { edmEvent = m_podioDataSvc->getEventFrame(); for (const auto& name : edmEvent.value().get().getAvailableCollections()) { const auto& [_, inserted] = collNameMapping.emplace(name, name); - debug() << fmt::format("Adding '{}' from Frame to conversion? {}", name, inserted); + debug() << fmt::format("Adding '{}' from Frame to conversion? {}", name, inserted) << endmsg; } } // Always check the contents of the TES because algorithms that do not use @@ -420,7 +420,7 @@ StatusCode EDM4hep2LcioTool::convertCollections(lcio::LCEventImpl* lcio_event) { std::optional> idToNameOpt(std::move(m_idToName)); for (const auto& name : getAvailableCollectionsFromStore(this, idToNameOpt)) { const auto& [_, inserted] = collNameMapping.emplace(name, name); - debug() << fmt::format("Adding '{}' from TES to conversion? {}", name, inserted); + debug() << fmt::format("Adding '{}' from TES to conversion? {}", name, inserted) << endmsg; } m_idToName = std::move(idToNameOpt.value());