mirror of
https://github.com/tmux/tmux.git
synced 2025-09-03 06:17:04 +00:00
Some extra logging to show why tmux might exit.
This commit is contained in:
@ -333,7 +333,7 @@ server_destroy_session_group(struct session *s)
|
||||
else {
|
||||
TAILQ_FOREACH_SAFE(s, &sg->sessions, gentry, s1) {
|
||||
server_destroy_session(s);
|
||||
session_destroy(s);
|
||||
session_destroy(s, __func__);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -399,7 +399,7 @@ server_check_unattached(void)
|
||||
if (!(s->flags & SESSION_UNATTACHED))
|
||||
continue;
|
||||
if (options_get_number (s->options, "destroy-unattached"))
|
||||
session_destroy(s);
|
||||
session_destroy(s, __func__);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user