diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-03-24 18:48:58 +0100 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-03-24 18:48:58 +0100 |
commit | a8466eb1dc93f51455ea158821345a1617b7833f (patch) | |
tree | 818085d6a442171735308fb1b0d405d177e76b8c | |
parent | 7d1942aab0224ffc4d3d7919360c0806834eff6b (diff) |
improve logging0.1.0
-rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 50c6647..87ce079 100644 --- a/src/main.rs +++ b/src/main.rs @@ -27,7 +27,7 @@ fn main() -> Result<()> { let ip_config = Path::new(rsdsl_ip_config::LOCATION); while !ip_config.exists() { - println!("[netlinkd] waiting for PPPoE connection"); + println!("[netlinkd] wait for pppoe"); thread::sleep(Duration::from_secs(8)); } @@ -62,7 +62,7 @@ fn configure_eth0() -> Result<()> { fn configure_wan() { match configure_rsppp0() { - Ok(_) => println!("[netlinkd] configure rsppp0 with PPPoE data"), + Ok(_) => println!("[netlinkd] configure rsppp0 with pppoe data"), Err(e) => println!("[netlinkd] can't configure rsppp0: {:?}", e), } } |