colon isn't needed in these messages

master
rasul 5 years ago
parent fc36b7ec94
commit ec7cefd023

@ -96,19 +96,19 @@ fn run_loop(procs: Vec<Proc>, holds: Option<i8>, poll: Poll, signals: Signals) -
}
// error starting or closing child process
Ok(ProcessEvent::CommandError(e)) => {
error!("[{}]: command error: {:?}", &proc.app.name, e)
error!("[{}] command error: {:?}", &proc.app.name, e)
}
// error reading stdout or stderr
Ok(ProcessEvent::IoError(channel, e)) => {
error!("[{}]: io error on {:?}: {:?}", &proc.app.name, channel, e)
error!("[{}] io error on {:?}: {:?}", &proc.app.name, channel, e)
}
// error doing utf8 translation
Ok(ProcessEvent::Utf8Error(channel, e)) => {
error!("[{}]: utf8 error on {:?}: {:?}", &proc.app.name, channel, e)
error!("[{}] utf8 error on {:?}: {:?}", &proc.app.name, channel, e)
}
// process exited
Ok(ProcessEvent::Exit(status)) => {
info!("[{}]: exited with status {}", &proc.app.name, status);
info!("[{}] exited with status {}", &proc.app.name, 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