Skip to content

Commit

Permalink
Record login state as string
Browse files Browse the repository at this point in the history
  • Loading branch information
metalefty committed Sep 8, 2023
1 parent a111a0f commit fe8d9fc
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 mode 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 fe8d9fc

Please sign in to comment.