summaryrefslogtreecommitdiffstats
path: root/src/xdg-autostart-generator/xdg-autostart-generator.c
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2022-06-24 09:59:44 +0200
committerDavid Tardon <dtardon@redhat.com>2022-06-28 12:50:44 +0200
commit28e5e1e97f47067bce190ea6b3404907d63e4320 (patch)
tree5d008272d08a98fd87b7f4690372cd98f668150d /src/xdg-autostart-generator/xdg-autostart-generator.c
parenttree-wide: allow ASCII fallback for → in logs (diff)
downloadsystemd-28e5e1e97f47067bce190ea6b3404907d63e4320.tar.xz
systemd-28e5e1e97f47067bce190ea6b3404907d63e4320.zip
tree-wide: allow ASCII fallback for … in logs
Diffstat (limited to 'src/xdg-autostart-generator/xdg-autostart-generator.c')
-rw-r--r--src/xdg-autostart-generator/xdg-autostart-generator.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xdg-autostart-generator/xdg-autostart-generator.c b/src/xdg-autostart-generator/xdg-autostart-generator.c
index 91dda27d43..918f6599ce 100644
--- a/src/xdg-autostart-generator/xdg-autostart-generator.c
+++ b/src/xdg-autostart-generator/xdg-autostart-generator.c
@@ -7,6 +7,7 @@
#include "dirent-util.h"
#include "fd-util.h"
#include "generator.h"
+#include "glyph-util.h"
#include "hashmap.h"
#include "log.h"
#include "main-func.h"
@@ -43,7 +44,7 @@ static int enumerate_xdg_autostart(Hashmap *all_services) {
STRV_FOREACH(path, autostart_dirs) {
_cleanup_closedir_ DIR *d = NULL;
- log_debug("Scanning autostart directory \"%s\"…", *path);
+ log_debug("Scanning autostart directory \"%s\"%s", *path, special_glyph(SPECIAL_GLYPH_ELLIPSIS));
d = opendir(*path);
if (!d) {
log_full_errno(errno == ENOENT ? LOG_DEBUG : LOG_WARNING, errno,