Skip to content

Commit

Permalink
add display task start message to *Console* buffer.
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchan0321 committed Sep 24, 2024
1 parent 54fd142 commit 1a25314
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions lib/TaskManager.prfm
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,13 @@ TaskManager method add (task name) {
$in set-comode;
$in set-tag STDIN;
(__in __out __err) ::= $task get-stdio;
call $task (set-stdio
[$__in ??? <nil> $in]
[$__out ??? <nil> $Task_stdout]
[$__err ??? <nil> $Task_stdout]
call $task (
set-stdio
[$__in ??? <nil> $in]
[$__out ??? <nil> $Task_stdout]
[$__err ??? <nil> $Task_stdout]
);
output-console [">>>Task [" . $sname "] start"];
return $sname;
};

Expand Down

0 comments on commit 1a25314

Please sign in to comment.