You're seeing log messages related to GNOME Display Manager (GDM) and accountsservice, which handles user session and account data.
Here's a quick breakdown of each log entry:
1.
<5>Gdm: Freeing conversation 'gdm-password' with active job
This is from GDM.
It means GDM is cleaning up an authentication session (likely PAM-based) that wasn't completed—possibly a cancelled login or session timeout.
"with active job" hints the session was still processing something when it was freed.
Source: GDM logs this internally; you can find references to this in GDM source or debug output with G_MESSAGES_DEBUG=all.
2.
<5>accountsservice: ActUserManager: user (null) has no username (uid: -1)
This comes from accountsservice.
It's indicating an internal failure to map a user ID (uid: -1) to a valid username.
Could be triggered by a system call like getpwuid(-1) failing.
Source: accountsservice logs are part of /usr/libexec/accounts-daemon. Code is here: accountsservice GitHub mirror. Logs like this are triggered when invalid or incomplete user info is processed.