From a159ef642dc98f154c1591d94bafcc825a3dc3ed Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Wed, 16 Mar 2022 21:22:35 +0800 Subject: [PATCH] drtio: demote default routing table message to info --- artiq/firmware/libboard_artiq/drtio_routing.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/artiq/firmware/libboard_artiq/drtio_routing.rs b/artiq/firmware/libboard_artiq/drtio_routing.rs index 10ce489b1..68836386f 100644 --- a/artiq/firmware/libboard_artiq/drtio_routing.rs +++ b/artiq/firmware/libboard_artiq/drtio_routing.rs @@ -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