File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1950,7 +1950,7 @@ fn sort_updates_inner(updates: Vec<StateUpdate>) -> Vec<StateUpdate> {
1950
1950
let existing_connections: BTreeSet < _ > = connections. iter ( ) . map ( |item| item. 0 . id ) . collect ( ) ;
1951
1951
1952
1952
// Initialize our set of topological sort.
1953
- tracing:: info !( ?connections, "sorting connections" ) ;
1953
+ tracing:: debug !( ?connections, "sorting connections" ) ;
1954
1954
for ( connection, ts, diff) in connections. drain ( ..) {
1955
1955
let statement = mz_sql:: parse:: parse ( & connection. create_sql )
1956
1956
. expect ( "valid CONNECTION create_sql" )
@@ -1967,7 +1967,7 @@ fn sort_updates_inner(updates: Vec<StateUpdate>) -> Vec<StateUpdate> {
1967
1967
// Be defensive and ensure we're not clobbering any items.
1968
1968
assert_none ! ( topo. insert( ( connection, ts, diff) , dependencies) ) ;
1969
1969
}
1970
- tracing:: info !( ?topo, ?existing_connections, "built topological sort" ) ;
1970
+ tracing:: debug !( ?topo, ?existing_connections, "built topological sort" ) ;
1971
1971
1972
1972
// Do a topological sort, pushing back into the provided Vec.
1973
1973
while !topo. is_empty ( ) {
You can’t perform that action at this time.
0 commit comments