Skip to content

Commit

Permalink
[CI debug] Can I please see this line
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaka committed Jan 4, 2021
1 parent 9011f1f commit 4b7cf7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/service/test/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ where F: Clone + Send + 'static, L: Clone + Send +'static, U: Clone + Send + 'st
match self.runtime.block_on(interval) {
Ok(()) => unreachable!("interval always fails; qed"),
Err(ref err) if err.is_inner() => (),
Err(_) => { log::error!("Waited for too long"); panic!("Waited for too long"); },
Err(_) => { println!("Waited for too long"); log::error!("Waited for too long"); panic!("Waited for too long"); },
}
}
}
Expand Down

0 comments on commit 4b7cf7c

Please sign in to comment.