Changed: Use extended version of Logger functions for logging execution commands

This commit is contained in:
agnostic-apollo
2021-08-21 03:48:32 +05:00
parent 19f4084099
commit 10704b1dad
6 changed files with 11 additions and 11 deletions

View File

@@ -83,7 +83,7 @@ public final class TermuxTask {
// No need to log stdin if logging is disabled, like for app internal scripts
int customLogLevel = Logger.isLogLevelValid(executionCommand.backgroundCustomLogLevel) ? executionCommand.backgroundCustomLogLevel: Logger.LOG_LEVEL_VERBOSE;
Logger.logDebug(LOG_TAG, ExecutionCommand.getExecutionInputLogString(executionCommand, true, customLogLevel >= Logger.getLogLevel()));
Logger.logDebugExtended(LOG_TAG, ExecutionCommand.getExecutionInputLogString(executionCommand, true, customLogLevel >= Logger.getLogLevel()));
String taskName = ShellUtils.getExecutableBasename(executionCommand.executable);