Skip to content

Commit

Permalink
Internal code sync (#1194)
Browse files Browse the repository at this point in the history
  • Loading branch information
sampajano authored Jan 29, 2022
1 parent 4dbd519 commit 1137018
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion javascript/net/grpc/web/grpcwebclientreadablestream.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,8 @@ class GrpcWebClientReadableStream {
} catch (err) {
self.handleError_(new RpcError(
StatusCode.INTERNAL,
`Error when deserializing response data: ${response}`));
`Error when deserializing response data; error: ${err}` +
`, response: ${response}`));
}
if (response) {
self.sendDataCallbacks_(response);
Expand Down

0 comments on commit 1137018

Please sign in to comment.