diff --git a/channels/manager.go b/channels/manager.go
index 6a48347e18cd19ab59614408a62e3f11d036cc0a..cfede7fdf5dbdf327ceb297076e17cd2d14bb367 100644
--- a/channels/manager.go
+++ b/channels/manager.go
@@ -15,6 +15,7 @@ import (
 	"encoding/base64"
 	"fmt"
 	"github.com/pkg/errors"
+	jww "github.com/spf13/jwalterweatherman"
 	"gitlab.com/elixxir/client/broadcast"
 	"gitlab.com/elixxir/client/cmix"
 	"gitlab.com/elixxir/client/cmix/message"
@@ -199,6 +200,7 @@ func (m *manager) GetChannel(chID *id.ID) (*cryptoBroadcast.Channel, error) {
 // underlying state tracking for message pickup for the channel, causing all
 // messages to be re-retrieved from the network
 func (m *manager) ReplayChannel(chID *id.ID) error {
+	jww.INFO.Printf("Replaying messages on channel %s", chID)
 	m.mux.RLock()
 	defer m.mux.RUnlock()