From 3480e0a62f78b10902e5351c75672d487ef4faa3 Mon Sep 17 00:00:00 2001 From: rascul Date: Sat, 23 Jul 2022 12:00:35 -0500 Subject: [PATCH] add restarting message --- src/run.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/run.rs b/src/run.rs index 1912ce1..f4c3183 100644 --- a/src/run.rs +++ b/src/run.rs @@ -42,6 +42,8 @@ fn restart_app(proc: Proc) -> Result { let app = proc.app.clone(); let name = proc.app.name.clone(); + info!("[{}] restarting", name.yellow()); + match Proc::start(app) { Ok(p) => Ok(p), Err(e) => {