summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/core/image.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/image.c b/src/core/image.c
index ce69c8a3c..be0eecf98 100644
--- a/src/core/image.c
+++ b/src/core/image.c
@@ -136,6 +136,7 @@ int image_autoload ( struct image *image ) {
int rc;
for ( type = image_types ; type < image_types_end ; type++ ) {
+ DBGC ( image, "IMAGE %p trying type %s\n", image, type->name );
rc = type->load ( image );
if ( image->type == NULL )
continue;