Temporary debugging

This commit is contained in:
C85297 2026-02-03 14:04:26 +00:00
parent 93ba106ffb
commit 949e8827e7
No known key found for this signature in database

View File

@ -265,9 +265,12 @@ class AddTextToImage extends Operation {
}
return imageBuffer.buffer;
} catch (err) {
throw new OperationError(`Error adding text to image. (${err})`, {
throw new OperationError(
`Error adding text to image. (${err.stack})`,
{
cause: err,
});
},
);
}
}