Skip to content

Commit

Permalink
Merge pull request #5394 from usu/fix/print-single-line-log
Browse files Browse the repository at this point in the history
fix: change log output to single line
  • Loading branch information
usu committed Jun 19, 2024
2 parents fa65e4e + 7765744 commit 5508f1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion print/server/api/pdf.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export default defineEventHandler(async (event) => {
} finally {
logOutput.measurements = performanceMeasurements.measurements
logOutput.status = status
console.log(logOutput)
console.log(JSON.stringify(logOutput))
}
})

Expand Down

0 comments on commit 5508f1d

Please sign in to comment.