Skip to content

Commit 8a91277

Browse files
committed
Remove noisy logging from MonacoCodeEditor.php and add some info about starting process
1 parent 5c97a42 commit 8a91277

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

ide/src/ide/editors/MonacoCodeEditor.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,8 +238,6 @@ public function save()
238238
}
239239

240240
$value = $this->getValue();
241-
var_dump($value);
242-
var_dump($this->file);
243241

244242
FileUtils::putAsync($this->file, $value)->then(function () {
245243
$this->fileTime = $this->file;

ide/src/ide/tasks/TaskPanel.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,10 @@ public function makeUI(): UXNode {
6868

6969
$this->terminal = new JediTermWidget(ChangeThemeCommand::$instance->getCurrentTheme()->getTerminalTheme()->build());
7070
$this->terminal->createTerminalSession(new PtyProcessConnector($this->process));
71+
72+
$this->terminal->writeString(str::join($this->processInfo->getProgram(), " "));
73+
$this->terminal->nextLine();
74+
7175
$this->terminal->requestFocus();
7276
$this->terminal->start();
7377

0 commit comments

Comments
 (0)