Skip to content

Commit

Permalink
Fix a missing newline in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
luser committed May 3, 2017
1 parent 83c1415 commit ace671c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ impl<C> SccacheService<C>

error!("[{:?}] fatal error: {:?}", output, err);

let mut error = format!("sccache: encountered fatal error");
let mut error = format!("sccache: encountered fatal error\n");
drop(writeln!(error, "sccache: error : {}", err));
for e in err.iter() {
error!("[{:?}] \t{}", e, output);
Expand Down

0 comments on commit ace671c

Please sign in to comment.