Output error lines
This commit is contained in:
parent
28fa5e1a32
commit
217125eaee
1 changed files with 2 additions and 0 deletions
|
@ -289,6 +289,8 @@ fn info_loop(shared_data: Arc<Mutex<Shared>>) -> Result<(), String> {
|
|||
//println!("Got response: {}", line);
|
||||
if line.starts_with("OK") {
|
||||
break;
|
||||
} else if line.starts_with("ACK") {
|
||||
println!("ERROR: {}", line);
|
||||
} else if line.starts_with("file: ") {
|
||||
let song_file = line.split_off(6);
|
||||
if song_file != lock.current_song {
|
||||
|
|
Loading…
Reference in a new issue