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

@@ -125,7 +125,7 @@ public class TermuxSession {
return null;
}
Logger.logDebug(LOG_TAG, executionCommand.toString());
Logger.logDebugExtended(LOG_TAG, executionCommand.toString());
Logger.logDebug(LOG_TAG, "Running \"" + executionCommand.getCommandIdAndLabelLogString() + "\" TermuxSession");
TerminalSession terminalSession = new TerminalSession(executionCommand.executable, executionCommand.workingDirectory, executionCommand.arguments, environment, executionCommand.terminalTranscriptRows, terminalSessionClient);