diff --git a/functions/imagemagick/test/index.test.js b/functions/imagemagick/test/index.test.js index 2865e754b50..66d5ea92ceb 100644 --- a/functions/imagemagick/test/index.test.js +++ b/functions/imagemagick/test/index.test.js @@ -53,6 +53,8 @@ describe('functions/imagemagick tests', () => { try { return await ffProc; } catch (err) { + console.log('DBG ERR', err); + console.log('DBG PROC', ffProc); // Timeouts always cause errors on Linux, so catch them if (err.name && err.name === 'ChildProcessError') { const {stdout, stderr} = ffProc.childProcess;