Skip to content

Commit

Permalink
rhp4: remove debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
n8maninger committed Oct 24, 2024
1 parent f6a828f commit dae1954
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions rhp/v4/transport.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package rhp

import (
"io"
"log"

"go.sia.tech/core/types"
)
Expand All @@ -22,9 +21,6 @@ func withDecoder(r io.Reader, maxLen int, fn func(*types.Decoder)) error {
// ReadID reads an RPC ID from the stream.
func ReadID(r io.Reader) (id types.Specifier, err error) {
err = withDecoder(r, 16, id.DecodeFrom)
if err == nil {
log.Println("read request id")
}
return
}

Expand Down

0 comments on commit dae1954

Please sign in to comment.