Skip to content

Commit

Permalink
Merge pull request #32410 from makortel/demotePrintout
Browse files Browse the repository at this point in the history
Demote module deletion printout to INFO
  • Loading branch information
cmsbuild committed Dec 8, 2020
2 parents e6a2c7b + cfc7ef0 commit ab41cc2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion FWCore/Framework/src/EventProcessor.cc
Expand Up @@ -579,7 +579,7 @@ namespace edm {
not unusedModules.empty()) {
pathsAndConsumesOfModules_.removeModules(unusedModules);

edm::LogWarning("DeleteModules").log([&unusedModules](auto& l) {
edm::LogInfo("DeleteModules").log([&unusedModules](auto& l) {
l << "Following modules are not in any Path or EndPath, nor is their output consumed by any other module, "
"and "
"therefore they are deleted before beginJob transition.";
Expand Down
2 changes: 1 addition & 1 deletion FWCore/Framework/src/SubProcess.cc
Expand Up @@ -247,7 +247,7 @@ namespace edm {
not unusedModules.empty()) {
pathsAndConsumesOfModules_.removeModules(unusedModules);

edm::LogWarning("DeleteModules").log([&unusedModules, this](auto& l) {
edm::LogInfo("DeleteModules").log([&unusedModules, this](auto& l) {
l << "Following modules are not in any Path or EndPath, nor is their output consumed by any other module, "
"and "
"therefore they are deleted from SubProcess "
Expand Down

0 comments on commit ab41cc2

Please sign in to comment.