diff --git a/src/ui/file.rs b/src/ui/file.rs index 27bac946..fe7ee83b 100644 --- a/src/ui/file.rs +++ b/src/ui/file.rs @@ -112,7 +112,12 @@ impl FilePrinter for TablePrinter { tab.add_row(row); } - tab.printstd(); + if i != 0 { + debug!("Printing {} table entries", i); + tab.printstd(); + } else { + debug!("Not printing table because there are zero entries"); + } } }