diff --git a/FT/FTDAQ/src/FTRawBankDecoder.cpp b/FT/FTDAQ/src/FTRawBankDecoder.cpp
index 1de392372bf890ca35b0ddbb5dc87114966417b6..3d4eb7dabfd5af9c8ef06173d974c33de6d5d83c 100644
--- a/FT/FTDAQ/src/FTRawBankDecoder.cpp
+++ b/FT/FTDAQ/src/FTRawBankDecoder.cpp
@@ -70,22 +70,22 @@ private:
 
   ServiceHandle<IDataProviderSvc> m_dataSvc{this, "DataService", "DetectorDataSvc", "The detector data service"};
 
-  mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_misordered{this, "Misordered large cluster"};
-  mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_misorderedLinks{this, "Misordered links"};
+  mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_misordered{this, "Misordered large cluster", 1};
+  mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_misorderedLinks{this, "Misordered links", 1};
   mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_corrupt1{
-      this, "Possibly corrupt data (type 1). Ignoring the cluster."};
+      this, "Possibly corrupt data (type 1). Ignoring the cluster.", 1};
   mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_corrupt2{
-      this, "Possibly corrupt data (type 2). Ignoring the cluster."};
-  mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_oddBank{this, "Odd bank."};
-  mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_emptyBank{this, "Totally empty bank."};
+      this, "Possibly corrupt data (type 2). Ignoring the cluster.", 1};
+  mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_oddBank{this, "Odd bank.", 1};
+  mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_emptyBank{this, "Totally empty bank.", 1};
   mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_absurdBank{
-      this, "Bank containing more clusters than physically possible."};
+      this, "Bank containing more clusters than physically possible.", 1};
   mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_wrongLocalLink{
-      this, "Local link larger than physical limit. Bank may be corrupted."};
+      this, "Local link larger than physical limit. Bank may be corrupted.", 1};
   mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_wrongLink{
-      this, "Received data from a link that should be disabled. Fix the DB."};
+      this, "Received data from a link that should be disabled. Fix the DB.", 1};
   mutable Gaudi::Accumulators::MsgCounter<MSG::WARNING> m_nonExistingModule{
-      this, "Skipping cluster(s) for non-existing module."};
+      this, "Skipping cluster(s) for non-existing module.", 1};
   mutable Gaudi::Accumulators::Histogram<1, Gaudi::Accumulators::atomicity::full, float> m_oddBank_hist{
       this,
       "odd_bank",