Don't log stdout (unused) by syncthing).

This commit is contained in:
Felix Ableitner 2014-06-16 10:33:19 +02:00
parent ed4c2dc275
commit b67c625318
1 changed files with 1 additions and 2 deletions

View File

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