Fixed getting logcat

Refs #243
This commit is contained in:
M66B 2016-02-02 10:06:32 +01:00
parent 7c43ba977d
commit 67fbad0441
1 changed files with 5 additions and 1 deletions

View File

@ -770,7 +770,11 @@ public class Util {
} catch (IOException ignored) {
}
if (process != null)
process.destroy();
try {
process.destroy();
} catch (Throwable ex) {
Log.w(TAG, ex.toString() + "\n" + Log.getStackTraceString(ex));
}
}
return builder;
}