Skip to content

Commit

Permalink
Merge "FAB-5331 Fix formatting of channel name"
Browse files Browse the repository at this point in the history
  • Loading branch information
mastersingh24 authored and Gerrit Code Review committed Jul 17, 2017
2 parents 28c8efd + ca167ce commit 1f279a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion protos/gossip/extensions.go
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ func (m *SignedGossipMessage) String() string {
isSimpleMsg = true
}
if !isSimpleMsg {
desc := fmt.Sprintf("Channel: %v, nonce: %d, tag: %s", m.Channel, m.Nonce, GossipMessage_Tag_name[int32(m.Tag)])
desc := fmt.Sprintf("Channel: %s, nonce: %d, tag: %s", string(m.Channel), m.Nonce, GossipMessage_Tag_name[int32(m.Tag)])
gMsg = fmt.Sprintf("%s %s", desc, gMsg)
}
}
Expand Down

0 comments on commit 1f279a0

Please sign in to comment.