master
rascul 2 years ago
parent 0bfe2eab5a
commit 9739f2805d

@ -102,15 +102,29 @@ fn run_loop(procs: Vec<Proc>, holds: Option<i8>, poll: Poll, signals: Signals) -
}
// error reading stdout or stderr
Ok(ProcessEvent::IoError(channel, e)) => {
error!("[{}] io error on {:?}: {:?}", &proc.app.name.yellow(), channel, e)
error!(
"[{}] io error on {:?}: {:?}",
&proc.app.name.yellow(),
channel,
e
)
}
// error doing utf8 translation
Ok(ProcessEvent::Utf8Error(channel, e)) => {
error!("[{}] utf8 error on {:?}: {:?}", &proc.app.name.yellow(), channel, e)
error!(
"[{}] utf8 error on {:?}: {:?}",
&proc.app.name.yellow(),
channel,
e
)
}
// process exited
Ok(ProcessEvent::Exit(status)) => {
info!("[{}] exited with status {}", &proc.app.name.yellow(), status);
info!(
"[{}] exited with status {}",
&proc.app.name.yellow(),
status
);
let hold = proc.app.hold.unwrap_or(false);
if proc.app.check_restart(status) {
if let Ok(p) = restart_app(proc) {

Loading…
Cancel
Save