Skip to content
Snippets Groups Projects
Commit 5e71ad1a authored by Brutzman, Don's avatar Brutzman, Don
Browse files

PduRecorder no longer throws exception

parent 16f44331
No related branches found
No related tags found
No related merge requests found
...@@ -54,7 +54,7 @@ public class FetterolfPduListenerSaver { ...@@ -54,7 +54,7 @@ public class FetterolfPduListenerSaver {
} }
System.out.println("Beginning pdu save to directory " + outDir); System.out.println("Beginning pdu save to directory " + outDir);
try { // try {
PduRecorder recorder = new PduRecorder(outDir, mcast, port); PduRecorder recorder = new PduRecorder(outDir, mcast, port);
recorder.startResume(); recorder.startResume();
...@@ -81,8 +81,9 @@ public class FetterolfPduListenerSaver { ...@@ -81,8 +81,9 @@ public class FetterolfPduListenerSaver {
} }
} }
System.out.println("Ending pdu save to " + recorder.getLogFilePath()); System.out.println("Ending pdu save to " + recorder.getLogFilePath());
} catch (IOException ex) { // }
System.err.println("*** Exception: " + ex.getClass().getSimpleName() + ": " + ex.getLocalizedMessage()); // catch (IOException ex) {
} // System.err.println("*** Exception: " + ex.getClass().getSimpleName() + ": " + ex.getLocalizedMessage());
// }
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment