diff --git a/DetectorDescription/FaserDetDescr/src/FaserDetectorIDBase.cxx b/DetectorDescription/FaserDetDescr/src/FaserDetectorIDBase.cxx
index f7bfaf784cbc46407f6e818b38d28d1226c6c4a5..ead54e86ac589588cf94ca74c168cf6f8f2b253c 100644
--- a/DetectorDescription/FaserDetDescr/src/FaserDetectorIDBase.cxx
+++ b/DetectorDescription/FaserDetDescr/src/FaserDetectorIDBase.cxx
@@ -328,7 +328,7 @@ FaserDetectorIDBase::initialize_from_dictionary(const IdDictMgr& dict_mgr)
         m_helper->setMsgSvc(m_msgSvc);
     }
 
-    if(m_helper->initialize_from_dictionary(dict_mgr, m_quiet)) return (1);
+    if(m_helper->initialize_from_dictionary(dict_mgr)) return (1);
 
     // Initialize level indices and id values from dicts
     if(initLevelsFromDict(dict_mgr)) return (1);
diff --git a/DetectorDescription/FaserDetDescr/src/FaserDetectorIDHelper.cxx b/DetectorDescription/FaserDetDescr/src/FaserDetectorIDHelper.cxx
index 4b83036880a9efd9269031ce8d1b7f6acf48b49a..d83d06cacd1b0dbdd795a17028b94e800738e547 100644
--- a/DetectorDescription/FaserDetDescr/src/FaserDetectorIDHelper.cxx
+++ b/DetectorDescription/FaserDetDescr/src/FaserDetectorIDHelper.cxx
@@ -42,8 +42,7 @@ FaserDetectorIDHelper::~FaserDetectorIDHelper(void)
 }
 
 int         
-FaserDetectorIDHelper::initialize_from_dictionary(const IdDictMgr& dict_mgr,
-                                                  bool quiet)
+FaserDetectorIDHelper::initialize_from_dictionary(const IdDictMgr& dict_mgr)
 {
 
     if(m_initialized) return(0);
diff --git a/DetectorDescription/FaserDetDescr/src/FaserDetectorIDHelper.h b/DetectorDescription/FaserDetDescr/src/FaserDetectorIDHelper.h
index 2028b09e358612256f91725eaac02422ab5fe728..9836bb951238b57fab10e7a28be3b309c50d0fa4 100644
--- a/DetectorDescription/FaserDetDescr/src/FaserDetectorIDHelper.h
+++ b/DetectorDescription/FaserDetDescr/src/FaserDetectorIDHelper.h
@@ -41,7 +41,7 @@ public:
 
    
     /// Initialization from the identifier dictionary
-  int         initialize_from_dictionary(const IdDictMgr& dict_mgr, bool quiet);
+  int         initialize_from_dictionary(const IdDictMgr& dict_mgr);
 
     ~FaserDetectorIDHelper(void);