File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
driver/src/main/java/org/neo4j/driver/internal/cluster/loadbalancing Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ private synchronized CompletionStage<RoutingTable> freshRoutingTable( AccessMode
141
141
else if ( routingTable .isStaleFor ( mode ) )
142
142
{
143
143
// existing routing table is not fresh and should be updated
144
- log .info ( "Routing table is stale. %s" , routingTable );
144
+ log .debug ( "Routing table is stale. %s" , routingTable );
145
145
146
146
CompletableFuture <RoutingTable > resultFuture = new CompletableFuture <>();
147
147
refreshRoutingTableFuture = resultFuture ;
@@ -176,7 +176,7 @@ private synchronized void freshClusterCompositionFetched( ClusterComposition com
176
176
routingTable .update ( composition );
177
177
connectionPool .retainAll ( routingTable .servers () );
178
178
179
- log .info ( "Updated routing table. %s" , routingTable );
179
+ log .debug ( "Updated routing table. %s" , routingTable );
180
180
181
181
CompletableFuture <RoutingTable > routingTableFuture = refreshRoutingTableFuture ;
182
182
refreshRoutingTableFuture = null ;
You can’t perform that action at this time.
0 commit comments