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

Read syncthing logs from stdout instead of stderr (ref calmh/syncthing@f97dd9d).

This commit is contained in:
Felix Ableitner 2014-06-25 18:55:22 +02:00
parent 5d078fc0c0
commit d858e0738d

View file

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