From c0e2e119681ed6a4a6cbfa718192aa386ef541e8 Mon Sep 17 00:00:00 2001 From: mwojcik Date: Wed, 28 Jul 2021 10:05:50 +0200 Subject: [PATCH] drtio_routing: changed warning message --- src/libboard_artiq/src/drtio_routing.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libboard_artiq/src/drtio_routing.rs b/src/libboard_artiq/src/drtio_routing.rs index 810fb9e6..b3a0a2cd 100644 --- a/src/libboard_artiq/src/drtio_routing.rs +++ b/src/libboard_artiq/src/drtio_routing.rs @@ -1,6 +1,6 @@ use libconfig::Config; #[cfg(has_drtio_routing)] -use pl::csr; // <- check if it works in the same way +use pl::csr; use core::fmt; use log::{warn, info}; @@ -67,7 +67,7 @@ pub fn config_routing_table(default_n_links: usize, cfg: Config) -> RoutingTable } } else { - warn!("could not read routing table from configuration, using default"); + warn!("length of the routing table is incorrect, using default"); } } else {