1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-12-23 11:21:29 +00:00

Use correct stream for syncthing output.

This commit is contained in:
Felix Ableitner 2014-08-18 00:22:03 +02:00
parent 49ec0734f5
commit 581e355366

View file

@ -54,7 +54,7 @@ public class SyncthingRunnable implements Runnable {
dos.writeBytes("exit\n"); dos.writeBytes("exit\n");
dos.flush(); dos.flush();
log(process.getErrorStream()); log(process.getInputStream());
ret = process.waitFor(); ret = process.waitFor();
} }