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

pduRecorder.setVerbose(true)

parent 53e75825
No related branches found
No related tags found
No related merge requests found
......@@ -87,12 +87,13 @@ public class PduListenerSaver
System.err.println("Usage: PduListenerSaver() or PduListenerSaver(\"outputdir\") or PduListenerSaver(\"outputDirectory\",\"multicastAddress\", port");
System.exit(1);
}
System.out.println("Beginning PduListenerSaver (" + multicastAddress + ":" + port + ") to directory " + outputDirectory);
System.out.println("Beginning PduListenerSaver (" + multicastAddress + ":" + port + ") to directory " + outputDirectory);
mystate state = mystate.RUNNING;
Scanner terminalKeyboardScanner = new Scanner(System.in);
PduRecorder pduRecorder = new PduRecorder(outputDirectory, multicastAddress, port); // assumes save
pduRecorder.setDescriptor("PduListenerSaver");
pduRecorder.setVerbose(true);
pduRecorder.start(); // begin running
while (true) // monitor user input via keyboard
......
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