diff src/bar_exif.c @ 1464:1b3751ac4743

be more verbose on parse errors
author nadvornik
date Fri, 20 Mar 2009 10:12:29 +0000
parents e015b6573d36
children 607c60506863
line wrap: on
line diff
--- a/src/bar_exif.c	Fri Mar 20 09:46:35 2009 +0000
+++ b/src/bar_exif.c	Fri Mar 20 10:12:29 2009 +0000
@@ -782,7 +782,7 @@
 		if (READ_CHAR_FULL("pane.title", title)) continue;
 		if (READ_BOOL_FULL("pane.expanded", expanded)) continue;
 
-		DEBUG_1("unknown attribute %s = %s", option, value);
+		log_printf("unknown attribute %s = %s\n", option, value);
 		}
 	
 	return bar_pane_exif_new(title, expanded, FALSE);
@@ -809,7 +809,7 @@
 		if (READ_BOOL_FULL("if_set", if_set)) continue;
 		if (READ_BOOL_FULL("editable", editable)) continue;
 		
-		DEBUG_1("unknown attribute %s = %s", option, value);
+		log_printf("unknown attribute %s = %s\n", option, value);
 		}
 	
 	if (key && key[0]) bar_pane_exif_add_entry(ped, key, title, if_set, editable);