File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
core/src/main/java/tech/ydb/core/impl/call Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 2828 * @param <W> type of message to be sent to the server
2929 */
3030public class ReadWriteStreamCall <R , W > extends ClientCall .Listener <R > implements GrpcReadWriteStream <R , W > {
31+ // GrpcTransport's logger is used intentionally
3132 private static final Logger logger = LoggerFactory .getLogger (GrpcTransport .class );
3233
3334 private final String traceId ;
@@ -159,7 +160,7 @@ public void close() {
159160 @ Override
160161 public void onClose (io .grpc .Status status , @ Nullable Metadata trailers ) {
161162 if (logger .isTraceEnabled ()) {
162- logger .trace ("ReadWriteStreamCall[{}] closed with status {}" , status );
163+ logger .trace ("ReadWriteStreamCall[{}] closed with status {}" , traceId , status );
163164 }
164165 statusConsumer .accept (status , trailers );
165166
You can’t perform that action at this time.
0 commit comments