Skip to content

Commit

Permalink
Remove debug logging (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nizamski committed Oct 18, 2023
1 parent 437fdd0 commit 897e19e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions internal/grpc/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ func (gc *RemoteWorkProcessorGrpcClient) Send(op *pb.ClientMessage) {
gc.Lock()
defer gc.Unlock()

fmt.Printf("Sending....: %v\n", op)
if err := gc.stream.Send(op); err != nil {
log.Fatalf("Error occured while sending client message: %v\n", err)
gc.stream.CloseSend()
Expand All @@ -84,7 +83,6 @@ func (gc *RemoteWorkProcessorGrpcClient) Receive() <-chan *pb.ServerMessage {
log.Fatalf("Error occured while receiving message from server: %v\n", recvErr)
}

fmt.Printf("New protocol message is %v\n", m)
c <- m
}
}(opChan)
Expand Down

0 comments on commit 897e19e

Please sign in to comment.