starpc 0.8.0 → 0.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "starpc",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "Streaming protobuf RPC service protocol over any two-way channel.",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -4,7 +4,6 @@ import (
4
4
  "context"
5
5
 
6
6
  "github.com/pkg/errors"
7
- "github.com/sirupsen/logrus"
8
7
  )
9
8
 
10
9
  // ClientRPC represents the client side of an on-going RPC call message stream.
@@ -141,7 +140,6 @@ func (r *ClientRPC) HandleCallData(pkt *CallData) error {
141
140
  return ErrCompleted
142
141
  }
143
142
 
144
- logrus.Infof("DEBUG: handling call data for %s/%s: %s", r.service, r.method, pkt)
145
143
  if data := pkt.GetData(); len(data) != 0 || pkt.GetDataIsZero() {
146
144
  select {
147
145
  case <-r.ctx.Done():