summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-12-07 13:12:13 +0100
committerSven Eden <yamakuzure@gmx.net>2018-05-30 07:49:38 +0200
commita9b05724359af3b6b2a374e33980bcda9d917894 (patch)
treedf6d5d8fa14591b0d08516adc506d16505c91e51 /src
parent1ff27c767d318309b986786d153fab5576b42334 (diff)
logind: fix misleading message
This message would also be emitted at boot for any user with linger enabled, so "logged in" is the wrong term to use.
Diffstat (limited to 'src')
-rw-r--r--src/login/logind-user.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/login/logind-user.c b/src/login/logind-user.c
index b82941c5b..17cea1827 100644
--- a/src/login/logind-user.c
+++ b/src/login/logind-user.c
@@ -479,7 +479,7 @@ int user_start(User *u) {
u->stopping = false;
if (!u->started) {
- log_debug("New user %s logged in.", u->name);
+ log_debug("Starting services for new user %s.", u->name);
/* Make XDG_RUNTIME_DIR */
r = user_mkdir_runtime_path(u);