runtime: print routing table at boot

pull/1212/head
Sebastien Bourdeauducq 2018-09-11 20:10:33 +08:00
parent e6bd835b5d
commit 36e3fedfc6
1 changed files with 2 additions and 1 deletions

View File

@ -64,7 +64,8 @@ pub fn config_routing_table(default_n_links: usize) -> RoutingTable {
});
if !ok {
warn!("could not read routing table from configuration, using default");
}
}
info!("routing table: {}", ret);
ret
}