Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public Result doWork() {
if(!path.exists()){
path.mkdirs();
}
File iperf3File = new File(iperf3Input.getParameter().getLineProtocolDirPath());
File iperf3File = new File(iperf3Input.getParameter().getLineProtocolFilePath());
if (!iperf3File.exists()) {
try {
iperf3File.createNewFile();
Expand All @@ -201,7 +201,7 @@ public Result doWork() {

FileOutputStream iperf3Stream = null;
try {
iperf3Stream = new FileOutputStream(iperf3Input.getParameter().getLineProtocolDirPath(), true);
iperf3Stream = new FileOutputStream(iperf3Input.getParameter().getLineProtocolFilePath(), true);
} catch (FileNotFoundException e) {
Toast.makeText(getApplicationContext(), "logfile not created", Toast.LENGTH_SHORT).show();
Log.d(TAG,e.toString());
Expand Down
Loading