mirror of
https://github.com/fankes/termux-app.git
synced 2025-09-07 19:14:04 +08:00
Replace "if(" with "if ("
This commit is contained in:
@@ -178,7 +178,7 @@ public class StreamGobbler extends Thread {
|
||||
String line;
|
||||
while ((line = reader.readLine()) != null) {
|
||||
|
||||
if(currentLogLevel >= logLevelVerbose)
|
||||
if (currentLogLevel >= logLevelVerbose)
|
||||
Logger.logVerbose(LOG_TAG, String.format(Locale.ENGLISH, "[%s] %s", shell, line)); // This will get truncated by LOGGER_ENTRY_MAX_LEN, likely 4KB
|
||||
|
||||
if (stringWriter != null) stringWriter.append(line).append("\n");
|
||||
|
||||
Reference in New Issue
Block a user