Create log file archives in separate thread.

cusax-fix
Damian Minkov 15 years ago
parent 8e9072c8fa
commit 1deeb60df2

@ -341,11 +341,25 @@ else if(source.equals(ice4jProtocolCheckBox))
}
else if(source.equals(archiveButton))
{
collectLogs();
// don't block the UI thread
new Thread(new Runnable()
{
public void run()
{
collectLogs();
}
}).start();
}
else if(source.equals(uploadLogsButton))
{
uploadLogs();
// don't block the UI thread
new Thread(new Runnable()
{
public void run()
{
uploadLogs();
}
}).start();
}
}

Loading…
Cancel
Save