1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-11-22 20:31:16 +00:00

Use correct stream for syncthing console output (fixes #115).

This commit is contained in:
Felix Ableitner 2014-09-07 14:56:55 +03:00
parent 36de750b3f
commit a90502dd5c

View file

@ -148,7 +148,7 @@ public class SyncthingService extends Service {
dos.writeBytes("exit\n");
dos.flush();
log(process.getErrorStream());
log(process.getInputStream());
ret = process.waitFor();
}