Skip to content

Commit 9584236

Browse files
committed
Update error message
1 parent 45a0945 commit 9584236

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/main/java/httpserver/Logger.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ public void log(String logString) {
2727
private void createFileIfDoesntExist(Path path) {
2828
try {
2929
fileOperator.createFileAtPath(path);
30-
} catch (IOException e) {
31-
System.out.println("Coudln't create log file");
32-
}
30+
} catch (IOException e) {}
3331
}
3432

3533
public byte[] readLog() {

0 commit comments

Comments
 (0)