Skip to content

Commit

Permalink
Remove excessive index-related debug output
Browse files Browse the repository at this point in the history
Verbosity makes long fuzz runs in CI unwieldy, and probably quickly
fills the SD card with useless logfile.
  • Loading branch information
ZakW committed Sep 12, 2019
1 parent c97f516 commit 38d3e93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ pub extern "C" fn trigger_load(bookpath: *const c_char, bookfd: i32) {
let display_lines = NonZeroU8::new(display_lines).expect("init() hasn't been called yet");
let index = index_book(&bookpath, display_lines);
if index.is_some() {
println!("did index book");
//println!("did index book");
let index = index.unwrap();
let page_count = index.len() as PageNumber;
BOOKS.lock().unwrap().insert(
Expand Down

0 comments on commit 38d3e93

Please sign in to comment.