Skip to content

Commit

Permalink
add debug statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobasco99 committed Aug 9, 2024
1 parent 07de3e0 commit aa69bc3
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,7 @@ public boolean storeFileLocally(String name, String text, String type) {
System.out.println(decodedBytes);
FileUtils.writeByteArrayToFile(f, decodedBytes);
textContent = readTxtFile("tmitocar/texts/" + name + "/" + fileName);
System.out.println("Text content: " + textContent);
} else if (type.toLowerCase().equals("application/pdf") || type.toLowerCase().equals("pdf")) {
byte[] decodedBytes = d.decode(text);
System.out.println(decodedBytes);
Expand Down

0 comments on commit aa69bc3

Please sign in to comment.