diff --git a/package/cloudshell/cm/customscript/domain/linux_script_executor.py b/package/cloudshell/cm/customscript/domain/linux_script_executor.py index f38c7f8..bce10e5 100644 --- a/package/cloudshell/cm/customscript/domain/linux_script_executor.py +++ b/package/cloudshell/cm/customscript/domain/linux_script_executor.py @@ -165,7 +165,7 @@ def delete_temp_folder(self, tmp_folder): raise Exception(ErrorMsg.DELETE_TEMP_FOLDER % result.std_err) def _run(self, code): - self.logger.debug('BashScript:' + code) + #self.logger.debug('BashScript:' + code) #stdin, stdout, stderr = self._run_cancelable(code) stdin, stdout, stderr = self.session.exec_command(code) @@ -193,4 +193,4 @@ def _run_cancelable(self, txt, *args): def _escape(self, value): escaped_str = "$'" + '\\x' + '\\x'.join([x.encode("hex") for x in str(value).encode("utf-8")]) + "'" - return escaped_str \ No newline at end of file + return escaped_str