mirror of
https://github.com/michaelrsweet/pdfio.git
synced 2024-12-26 13:28:22 +01:00
Add more debug logging.
This commit is contained in:
parent
7330cc35ba
commit
2dfb560f8b
@ -469,9 +469,14 @@ _pdfioObjLoad(pdfio_obj_t *obj) // I - Object
|
|||||||
// Decrypt as needed...
|
// Decrypt as needed...
|
||||||
if (obj->pdf->encryption)
|
if (obj->pdf->encryption)
|
||||||
{
|
{
|
||||||
|
PDFIO_DEBUG("_pdfioObjLoad: Decrypting value...\n");
|
||||||
|
|
||||||
if (!_pdfioValueDecrypt(obj->pdf, obj, &obj->value, 0))
|
if (!_pdfioValueDecrypt(obj->pdf, obj, &obj->value, 0))
|
||||||
|
{
|
||||||
|
PDFIO_DEBUG("_pdfioObjLoad: Failed to decrypt.\n");
|
||||||
return (false);
|
return (false);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
PDFIO_DEBUG("_pdfioObjLoad: ");
|
PDFIO_DEBUG("_pdfioObjLoad: ");
|
||||||
PDFIO_DEBUG_VALUE(&obj->value);
|
PDFIO_DEBUG_VALUE(&obj->value);
|
||||||
|
Loading…
Reference in New Issue
Block a user