more debug
diff --git a/skeletons/per_support.c b/skeletons/per_support.c
index 2e4e527..e8299c7 100644
--- a/skeletons/per_support.c
+++ b/skeletons/per_support.c
@@ -103,11 +103,13 @@
 
 	accum &= (((uint32_t)1 << nbits) - 1);
 
-	ASN_DEBUG("  [PER got %2d<=%2d bits => span %d %+d[%d..%d] (%d) => 0x%x]",
+	ASN_DEBUG("  [PER got %2d<=%2d bits => span %d %+d[%d..%d]:%02x (%d) => 0x%x]",
 		nbits, nleft,
 		pd->moved,
 		(((int)pd->buffer) & 0xf),
-		pd->nboff, pd->nbits, pd->nbits - pd->nboff,
+		pd->nboff, pd->nbits,
+		pd->buffer[0],
+		pd->nbits - pd->nboff,
 		(int)accum);
 
 	return accum;