File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
driver/src/main/java/org/neo4j/driver/internal/bolt/basicimpl Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 73
73
74
74
public final class BoltConnectionImpl implements BoltConnection {
75
75
private final LoggingProvider logging ;
76
+ private final System .Logger log ;
76
77
private final BoltProtocol protocol ;
77
78
private final Connection connection ;
78
79
private final EventLoop eventLoop ;
@@ -110,6 +111,7 @@ public BoltConnectionImpl(
110
111
this .messageWriters = new ArrayDeque <>();
111
112
this .clock = Objects .requireNonNull (clock );
112
113
this .logging = Objects .requireNonNull (logging );
114
+ this .log = this .logging .getLog (getClass ());
113
115
}
114
116
115
117
@ Override
@@ -422,6 +424,7 @@ public CompletionStage<Void> flush(ResponseHandler handler) {
422
424
}
423
425
} else {
424
426
flushFuture .complete (null );
427
+ log .log (System .Logger .Level .DEBUG , "flushed" );
425
428
}
426
429
});
427
430
} else {
You can’t perform that action at this time.
0 commit comments