X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/31f768a16c34148b8d1a98650421d531b0d892f8..5a309e9f7905162f641e676127e6c145864c5b41:/src/xbt/dict_elm.c diff --git a/src/xbt/dict_elm.c b/src/xbt/dict_elm.c index 1c7b2fbafa..29f06e9208 100644 --- a/src/xbt/dict_elm.c +++ b/src/xbt/dict_elm.c @@ -211,7 +211,9 @@ gras_dictelm_free(gras_dictelm_t **pp_elm) { static void _dictelm_wrapper_free(void *pp_elm) { - DEBUG2("Free dictelm %p (*=%p)", pp_elm, *(void**)pp_elm); + DEBUG3("Free dictelm '%.*s' %p", + (*(gras_dictelm_t**)pp_elm)->key_len, (*(gras_dictelm_t**)pp_elm)->key, + *(void**)pp_elm); gras_dictelm_free((gras_dictelm_t**)pp_elm); }