Remove verbose logline

This commit is contained in:
Vishnu Mohandas 2021-02-26 17:13:58 +05:30
parent 71503f254f
commit 9e052c7609

View file

@ -174,11 +174,6 @@ class _ThumbnailWidgetState extends State<ThumbnailWidget> {
void _getThumbnailFromServer() {
getThumbnailFromServer(widget.file).then((file) async {
if (file.lengthSync() > THUMBNAIL_DATA_LIMIT) {
_logger.warning(widget.file.title +
" has a thumbnail of size " +
file.lengthSync().toString());
}
if (mounted) {
final imageProvider = Image.file(file).image;
precacheImage(imageProvider, context).then((value) {