diff --git a/src/state_block.cpp b/src/state_block.cpp
index 83ceed1807f6f469b544bf67c9d730543ca7cdcd..3e53245de9c78b5720d56822c22d4e45447832f0 100644
--- a/src/state_block.cpp
+++ b/src/state_block.cpp
@@ -71,29 +71,5 @@ StateBlock::Notifications StateBlock::getNotifications() const
     return notifications_;
 }
 
-void StateBlock::printNotifications() const
-{
-    WOLF_TRACE("SB Notifications for: ", shared_from_this());
-    std::lock_guard<std::mutex> lock(notifictions_mut_);
-    for (auto notif : notifications_)
-    {
-        switch (notif)
-        {
-            case Notification::ADD:
-                WOLF_TRACE("   ADD")
-                break;
-            case Notification::REMOVE:
-                WOLF_TRACE("   REMOVE")
-                break;
-            case Notification::UPDATE_FIX:
-                WOLF_TRACE("   UPDATE_FIX")
-                break;
-            case Notification::UPDATE_STATE:
-                WOLF_TRACE("   UPDATE_STATE")
-                break;
-        }
-    }
-
-}
 
 }
diff --git a/src/state_block.h b/src/state_block.h
index 08d5af6591ab88de62ae4b0a7e2616a65f0b5351..d2d7c3159d5c0e75d0b7778cbccff4a5601348ac 100644
--- a/src/state_block.h
+++ b/src/state_block.h
@@ -143,10 +143,6 @@ public:
          **/
         StateBlock::Notifications getNotifications() const;
 
-        /** \brief Print list of notifications
-         **/
-        void printNotifications() const;
-
 };
 
 } // namespace wolf