Skip to content

Commit 33e5da9

Browse files
committed
fix(convert): fix error showing
1 parent 5dfe907 commit 33e5da9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/convert.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ export async function convertPdfToHtml(
7272
}
7373
} catch (e) {
7474
// @ts-ignore
75-
logger.error(e.stdout);
75+
// eslint-disable-next-line @typescript-eslint/restrict-template-expressions
76+
logger.error(`${e.stdout}${e.stderr}`);
7677
throw e;
7778
}
7879

0 commit comments

Comments
 (0)