diff --git a/PhysicsAnalysis/JetMissingEtID/JetSelectorTools/Root/JetCleaningTool.cxx b/PhysicsAnalysis/JetMissingEtID/JetSelectorTools/Root/JetCleaningTool.cxx
index c4e23c26228f745070e1099082219a4243cc2d40..4e308a0b94f011b13c917181f089e5215bcf0fcc 100644
--- a/PhysicsAnalysis/JetMissingEtID/JetSelectorTools/Root/JetCleaningTool.cxx
+++ b/PhysicsAnalysis/JetMissingEtID/JetSelectorTools/Root/JetCleaningTool.cxx
@@ -189,9 +189,6 @@ StatusCode JetCleaningTool::initialize()
             return StatusCode::FAILURE;
     }
 
-  if(m_jetContainerName.empty()) {
-      ATH_MSG_WARNING("Impossible to initialize JetCleaningTool decorators with empty container name. Please fix that if you are trying to decorate jets with jet cleaning variables.");
-  }
   ATH_CHECK(m_jetCleanKey.initialize(!m_jetContainerName.empty()));
 
   return StatusCode::SUCCESS;
diff --git a/Reconstruction/EventShapes/EventShapeTools/Root/EventDensityTool.cxx b/Reconstruction/EventShapes/EventShapeTools/Root/EventDensityTool.cxx
index acf3ea2a9f8d57ef8f3a9ed721019712a0c14664..712115235439f7ee394f8a84db6e5a3eb4273bb5 100644
--- a/Reconstruction/EventShapes/EventShapeTools/Root/EventDensityTool.cxx
+++ b/Reconstruction/EventShapes/EventShapeTools/Root/EventDensityTool.cxx
@@ -154,9 +154,7 @@ StatusCode EventDensityTool::fillEventShape(xAOD::EventShape *eventShape) const
       return StatusCode::FAILURE;
     }
     if ( h_in->size() == 0 ) {
-      // !!! FIXME !!! Downgraded ERROR to WARNING and no FAILURE
-      ATH_MSG_WARNING( "Input PseudoJetContainer size()=0 for pseudojets from "<< m_inPJKey.key() );
-      //return StatusCode::FAILURE;
+      ATH_MSG_DEBUG( "Input PseudoJetContainer size()=0 for pseudojets from "<< m_inPJKey.key() );
     } else {
       ATH_MSG_DEBUG("Retrieved input pseudojets " << m_inPJKey.key() << " , count: " <<  h_in->size());
     }