remove console.log

deepsource-autofix-76c6eb20
Dan Gowans 2023-02-02 10:54:45 -05:00
parent ca853c64b7
commit 539ab54e85
2 changed files with 0 additions and 3 deletions

View File

@ -26,7 +26,6 @@ export async function handler(request, response, next) {
return;
}
const reportData = await getReportData(printConfig, request.query);
console.log(reportData);
const reportPath = path.join('views', 'print', 'pdf', printName + '.ejs');
function pdfCallbackFunction(pdf) {
response.setHeader('Content-Disposition', `${attachmentOrInline}; filename=${camelcase(printConfig.title)}.pdf`);

View File

@ -53,8 +53,6 @@ export async function handler(
const reportData = await getReportData(printConfig, request.query)
console.log(reportData)
const reportPath = path.join('views', 'print', 'pdf', printName + '.ejs')
function pdfCallbackFunction(pdf: Buffer): void {