diff --git a/protocol/streaming/full_node_streaming_manager.go b/protocol/streaming/full_node_streaming_manager.go index 8bdc6e6694..1894792d4a 100644 --- a/protocol/streaming/full_node_streaming_manager.go +++ b/protocol/streaming/full_node_streaming_manager.go @@ -577,6 +577,13 @@ func (sm *FullNodeStreamingManagerImpl) AddSubaccountUpdatesToCache( sm.streamUpdateCache = append(sm.streamUpdateCache, updates...) for _, subaccountId := range subaccountIds { + sm.logger.Info( + fmt.Sprintf( + "Adding subaccount update for subaccount id %+v with subscription ids %+v", + subaccountId, + sm.subaccountIdToSubscriptionIdMapping[subaccountId], + ), + ) sm.streamUpdateSubscriptionCache = append( sm.streamUpdateSubscriptionCache, sm.subaccountIdToSubscriptionIdMapping[subaccountId],