Skip to content

Commit af31ef0

Browse files
authored
Merge pull request #2509 from murgatroid99/grpc-js_transport_trace_fix
grpc-js: Fix transport trace message formatting
2 parents 6b036f3 + 54409d0 commit af31ef0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/grpc-js/src/transport.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ export class Http2SubchannelConnector implements SubchannelConnector {
584584
logging.trace(
585585
LogVerbosity.DEBUG,
586586
TRACER_NAME,
587-
this.channelTarget + ' ' + text
587+
uriToString(this.channelTarget) + ' ' + text
588588
);
589589
}
590590
private createSession(

0 commit comments

Comments
 (0)