Do not filter logcat on netguard

This commit is contained in:
M66B 2016-01-24 08:59:47 +01:00
parent 977f15822c
commit c1dbd64447
1 changed files with 1 additions and 2 deletions

View File

@ -664,8 +664,7 @@ public class Util {
br = new BufferedReader(new InputStreamReader(process.getInputStream()));
String line;
while ((line = br.readLine()) != null)
if (line.toLowerCase().contains("netguard"))
builder.append(line).append("\r\n");
builder.append(line).append("\r\n");
} catch (IOException ex) {
Log.e(TAG, ex.toString() + "\n" + Log.getStackTraceString(ex));
} finally {