Skip to content

Commit 2790e84

Browse files
Remove console.log from Terminal.js
Removed console.log statements for cleaner output.
1 parent eb725a4 commit 2790e84

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/plugins/terminal/www/Terminal.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ const Terminal = {
3333
let lastError = "";
3434

3535
Executor.start("sh", (type, data) => {
36-
console.log(`[AXS] ${type}: ${data}`);
3736
logger(`${type} ${data}`);
3837

3938
if (type === "stderr" && data) {
@@ -61,7 +60,6 @@ const Terminal = {
6160
});
6261
} else {
6362
Executor.start("sh", (type, data) => {
64-
console.log(`[AXS] ${type}: ${data}`);
6563
logger(`${type} ${data}`);
6664
}).then(async (uuid) => {
6765
await Executor.write(uuid, `source ${filesDir}/init-sandbox.sh ${installing ? "--installing" : ""} ${failsafeArg}; exit`);

0 commit comments

Comments
 (0)