Color in terminal error output

This commit is contained in:
greg 2018-03-22 03:37:48 -07:00
parent 6bd3ed7b65
commit 072eeaa127
1 changed files with 2 additions and 2 deletions

View File

@ -95,13 +95,13 @@ impl FinishedComputation {
pub fn to_repl(&self) -> String {
match self.text_output {
Ok(ref s) => s.clone(),
Err(ref s) => format!("Error: {}", s)
Err(ref s) => format!("{} {}", "Error: ".red().bold(), s)
}
}
pub fn to_noninteractive(&self) -> Option<String> {
match self.text_output {
Ok(ref s) => None,
Err(ref s) => Some(format!("Error: {}", s)),
Err(ref s) => Some(format!("{} {}", "Error: ".red().bold(), s))
}
}
}