File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
driver/src/main/java/org/neo4j/driver/internal/cluster Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ synchronized CompletionStage<RoutingTable> refreshRoutingTable( ConnectionContex
78
78
else if ( routingTable .isStaleFor ( context .mode () ) )
79
79
{
80
80
// existing routing table is not fresh and should be updated
81
- log .info ( "Routing table for database '%s' is stale. %s" , databaseName .description (), routingTable );
81
+ log .debug ( "Routing table for database '%s' is stale. %s" , databaseName .description (), routingTable );
82
82
83
83
CompletableFuture <RoutingTable > resultFuture = new CompletableFuture <>();
84
84
refreshRoutingTableFuture = resultFuture ;
@@ -114,7 +114,7 @@ private synchronized void freshClusterCompositionFetched( ClusterComposition com
114
114
routingTableRegistry .removeAged ();
115
115
connectionPool .retainAll ( routingTableRegistry .allServers () );
116
116
117
- log .info ( "Updated routing table for database '%s'. %s" , databaseName .description (), routingTable );
117
+ log .debug ( "Updated routing table for database '%s'. %s" , databaseName .description (), routingTable );
118
118
119
119
CompletableFuture <RoutingTable > routingTableFuture = refreshRoutingTableFuture ;
120
120
refreshRoutingTableFuture = null ;
You can’t perform that action at this time.
0 commit comments