diff -r baf3fe7c6354 -r f92a24ab046e src/util/main.c --- a/src/util/main.c Tue Dec 29 16:44:48 2009 +0200 +++ b/src/util/main.c Thu Dec 31 14:01:37 2009 +0200 @@ -151,6 +151,9 @@ } log_info("Updated image cache"); + + } else { + log_debug("Image cache is fresh"); } // show info @@ -166,7 +169,7 @@ if (ti.width && ti.height) { log_debug("Render tile %zux%zu@(%zu,%zu) -> stdout", ti.width, ti.height, ti.x, ti.y); - if ((err = pt_image_tile(image, &ti, stdout))) + if ((err = pt_image_tile_file(image, &ti, stdout))) log_errno("pt_image_tile: %s: %s", img_path, pt_strerror(err)); }