make the stream deletion error message more specific

This commit is contained in:
Marten Seemann 2019-11-08 11:09:54 +07:00
parent 394ff04fb1
commit 4b58bc0d07
9 changed files with 16 additions and 16 deletions

View file

@ -155,7 +155,7 @@ func (m *outgoingUniStreamsMap) DeleteStream(num protocol.StreamNum) error {
if _, ok := m.streams[num]; !ok {
return streamError{
message: "Tried to delete unknown stream %d",
message: "Tried to delete unknown outgoing stream %d",
nums: []protocol.StreamNum{num},
}
}