mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 23:24:39 +00:00
Decrease error level for 'already has control of terminal' messages
This commit is contained in:
parent
fd2a0dffa9
commit
fedce06687
1 changed files with 1 additions and 1 deletions
|
@ -801,7 +801,7 @@ bool terminal_give_to_job(job_t *j, int cont) {
|
|||
// to hand over control of the terminal to this process group, which is a no-op if it's already
|
||||
// been done.
|
||||
if (tcgetpgrp(STDIN_FILENO) == j->pgid) {
|
||||
debug(2, L"Process group %d already has control of terminal\n", j->pgid);
|
||||
debug(4, L"Process group %d already has control of terminal\n", j->pgid);
|
||||
} else {
|
||||
debug(4,
|
||||
L"Attempting to bring process group to foreground via tcsetpgrp for job->pgid %d\n",
|
||||
|
|
Loading…
Reference in a new issue