diff options
Diffstat (limited to 'src/format/java/attribute.c')
-rw-r--r-- | src/format/java/attribute.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/format/java/attribute.c b/src/format/java/attribute.c index f5947dd..0cfed92 100644 --- a/src/format/java/attribute.c +++ b/src/format/java/attribute.c @@ -31,6 +31,11 @@ #include "java-int.h" #include "pool.h" #include "../../common/endianness.h" +#include "../../panel/log.h" + + + +#define _(str) str @@ -231,12 +236,12 @@ bool load_java_attribute(java_format *format, java_attribute *attrib, off_t *pos else if (result) { result = false; - printf("<OIDAIMPL> Nom d'attribut non supporté : '%s'\n", name); + log_variadic_message(LMT_BAD_BINARY, _("Attribute name not supported: '%s'"), name); } if (result && attrib_length != (*pos - saved_pos)) - printf("<BADBIN> indication de la taille de l'attribut '%s' non vérifiée : %d vs %d\n", - name, attrib_length, *pos - saved_pos); + log_variadic_message(LMT_BAD_BINARY, _("Size indication of the attribute '%s' not verified: %d vs %d"), + name, attrib_length, *pos - saved_pos); } |