Skip to content

Commit

Permalink
chore: faster if disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug committed Sep 10, 2024
1 parent 2bb70db commit d930a32
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,9 @@ public void executeCommandWithRoot(final String command,Shell.OnCommandResultLis
}

public void printShellOutput(List<String> output) {
if (disableLogcat) {
return;
}
if (output != null && !output.isEmpty()) {
for (String s : output) {
log(s);
Expand Down

0 comments on commit d930a32

Please sign in to comment.