Remove spammy trace log in ListView

This commit is contained in:
Henrik Friedrichsen
2021-05-07 23:14:29 +02:00
parent 5fd93c33cb
commit 83dd2494c8

View File

@@ -1,4 +1,4 @@
use log::{info, trace};
use log::info;
use std::cmp::{max, min, Ordering};
use std::sync::{Arc, RwLock};
@@ -73,11 +73,6 @@ impl<I: ListItem> ListView<I> {
fn can_paginate(&self) -> bool {
if let Some(max) = self.get_pagination().max_content() {
trace!(
"pagination: total: {}, current: {}",
max,
self.last_content_len
);
if max > self.last_content_len {
return true;
}