Skip to content

Commit e389bbd

Browse files
committed
Fix typo in log message
1 parent e17e466 commit e389bbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rolling-shutter/p2p/messaging.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ func (m *P2PMessaging) AddHandlerFunc(handlerFunc HandlerFunc, protos ...p2pmsg.
160160
func (m *P2PMessaging) addValidatorImpl(valFunc ValidatorFunc, messProto p2pmsg.Message) {
161161
topic := messProto.Topic()
162162
handleError := func(err error) {
163-
log.Info().Str("topic", topic).Err(err).Msg("received invalid message)")
163+
log.Info().Str("topic", topic).Err(err).Msg("received invalid message")
164164
}
165165
validate := func(ctx context.Context, sender peer.ID, message *pubsub.Message) pubsub.ValidationResult {
166166
if message.GetTopic() != topic {

0 commit comments

Comments
 (0)