drtio: demote default routing table message to info

This commit is contained in:
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; return true;
} else {
warn!("length of the configured routing table is incorrect");
} }
} }
false false
}); });
if !ok { 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); info!("routing table: {}", ret);
ret ret