drtio: demote default routing table message to info

pull/1863/merge
Sebastien Bourdeauducq 2022-03-16 21:22:35 +08:00
parent 1a26eb8cf2
commit a159ef642d
1 changed files with 3 additions and 1 deletions

View File

@ -64,12 +64,14 @@ pub fn config_routing_table(default_n_links: usize) -> RoutingTable {
}
}
return true;
} else {
warn!("length of the configured routing table is incorrect");
}
}
false
});
if !ok {
warn!("could not read routing table from configuration, using default");
info!("could not read routing table from configuration, using default");
}
info!("routing table: {}", ret);
ret