Skip to content

Commit

Permalink
Merge pull request neutrinolabs#2792 from metalefty/login_mode_log
Browse files Browse the repository at this point in the history
Record login state as string
  • Loading branch information
matt335672 authored Sep 8, 2023
2 parents 98f45ba + 16d45a8 commit def567c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xrdp/xrdp_wm.c
Original file line number Diff line number Diff line change
Expand Up @@ -2036,7 +2036,8 @@ xrdp_wm_login_state_changed(struct xrdp_wm *self)
return 0;
}

LOG(LOG_LEVEL_DEBUG, "xrdp_wm_login_mode_changed: login_mode is %d", self->login_state);
LOG(LOG_LEVEL_DEBUG, "Login state has changed to %s",
xrdp_wm_login_state_to_str(self->login_state));
if (self->login_state == WMLS_RESET)
{
list_clear(self->log);
Expand Down

0 comments on commit def567c

Please sign in to comment.