Skip to content

Commit

Permalink
Merge 897df7d into e876b52
Browse files Browse the repository at this point in the history
  • Loading branch information
murgatroid99 committed Oct 12, 2021
2 parents e876b52 + 897df7d commit 9cf0ea3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/grpc-js/package.json
@@ -1,6 +1,6 @@
{
"name": "@grpc/grpc-js",
"version": "1.3.7",
"version": "1.3.8",
"description": "gRPC Library for Node - pure JS implementation",
"homepage": "https://grpc.io/",
"repository": "https://github.com/grpc/grpc-node/tree/master/packages/grpc-js",
Expand Down
1 change: 1 addition & 0 deletions packages/grpc-js/src/channel.ts
Expand Up @@ -290,6 +290,7 @@ export class ChannelImplementation implements Channel {
new MaxMessageSizeFilterFactory(this.options),
new CompressionFilterFactory(this),
]);
trace(LogVerbosity.DEBUG, 'channel', 'Channel constructed with options ' + JSON.stringify(options, undefined, 2));
}

private callRefTimerRef() {
Expand Down
1 change: 1 addition & 0 deletions packages/grpc-js/src/subchannel.ts
Expand Up @@ -247,6 +247,7 @@ export class Subchannel {
this.handleBackoffTimer();
}, backoffOptions);
this.subchannelAddressString = subchannelAddressToString(subchannelAddress);
trace('Subchannel constructed with options ' + JSON.stringify(options, undefined, 2));
}

private handleBackoffTimer() {
Expand Down

0 comments on commit 9cf0ea3

Please sign in to comment.