Skip to content

Commit

Permalink
feat: 파일 다운로드 로깅
Browse files Browse the repository at this point in the history
  • Loading branch information
gitchannn committed Feb 20, 2024
1 parent a238224 commit 97e9751
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public Long translate(final MultipartFile file) {
log.info("Mathpix API의 OCR 작업이 완료되었습니다. File: {}, pdf id: {}", fileName, pdfId);

final File latexFile = ocrDownloadClient.download(pdfId);
System.out.println("latexFile.getAbsolutePath() = " + latexFile.getAbsolutePath());
log.info("Latex 파일을 다운로드했습니다. File Name: {}", latexFile.getName());

return null;
}
Expand Down

0 comments on commit 97e9751

Please sign in to comment.