teknoraver / rpms / systemd

Forked from rpms/systemd a month ago
Clone

Blame SOURCES/0268-tree-wide-allow-ASCII-fallback-for-in-logs.patch

594167
From 73cbf82d726a7b50c9b7dec9a0a0c285b0de9993 Mon Sep 17 00:00:00 2001
594167
From: David Tardon <dtardon@redhat.com>
594167
Date: Fri, 24 Jun 2022 09:13:42 +0200
594167
Subject: [PATCH] =?UTF-8?q?tree-wide:=20allow=20ASCII=20fallback=20for=20?=
594167
 =?UTF-8?q?=E2=86=92=20in=20logs?=
594167
MIME-Version: 1.0
594167
Content-Type: text/plain; charset=UTF-8
594167
Content-Transfer-Encoding: 8bit
594167
594167
(cherry picked from commit e2341b6bc325932b3f9f10874956952cbdbd6361)
594167
594167
Resolves: #2118297
594167
---
594167
 src/basic/unit-file.c                  | 13 +++++-----
594167
 src/core/dbus-service.c                |  3 ++-
594167
 src/core/manager-serialize.c           |  6 +++--
594167
 src/core/namespace.c                   |  7 +++--
594167
 src/core/socket.c                      |  3 ++-
594167
 src/home/homed-home.c                  |  4 ++-
594167
 src/home/homed-manager.c               |  7 +++--
594167
 src/home/homework-luks.c               |  6 ++++-
594167
 src/home/homework-mount.c              |  4 ++-
594167
 src/libsystemd/sd-bus/sd-bus.c         |  4 ++-
594167
 src/network/networkd-link.c            | 15 +++++++----
594167
 src/partition/repart.c                 |  7 ++---
594167
 src/resolve/resolved-dns-query.c       | 11 ++++++--
594167
 src/resolve/resolved-dns-transaction.c | 14 +++++-----
594167
 src/run-generator/run-generator.c      |  4 ++-
594167
 src/shared/devnode-acl.c               |  5 ++--
594167
 src/shared/dns-domain.c                |  8 +++---
594167
 src/shared/install.c                   |  3 ++-
594167
 src/shared/mount-util.c                |  5 ++--
594167
 src/shared/varlink.c                   |  4 ++-
594167
 src/udev/udev-builtin-net_id.c         | 36 +++++++++++++++-----------
594167
 21 files changed, 110 insertions(+), 59 deletions(-)
594167
594167
diff --git a/src/basic/unit-file.c b/src/basic/unit-file.c
594167
index 83c29bb25f..2f5ec5b702 100644
594167
--- a/src/basic/unit-file.c
594167
+++ b/src/basic/unit-file.c
594167
@@ -348,13 +348,13 @@ int unit_file_resolve_symlink(
594167
                 if (r < 0)
594167
                         return r;
594167
                 if (is_path(tail))
594167
-                        log_warning("Suspicious symlink %s/%s→%s, treating as alias.",
594167
-                                    dir, filename, simplified);
594167
+                        log_warning("Suspicious symlink %s/%s %s %s, treating as alias.",
594167
+                                    dir, filename, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), simplified);
594167
 
594167
                 dst = resolve_destination_target ? TAKE_PTR(simplified) : TAKE_PTR(target_name);
594167
 
594167
         } else {
594167
-                log_debug("Linked unit file: %s/%s → %s", dir, filename, simplified);
594167
+                log_debug("Linked unit file: %s/%s %s %s", dir, filename, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), simplified);
594167
 
594167
                 if (resolve_destination_target)
594167
                         dst = TAKE_PTR(simplified);
594167
@@ -569,8 +569,8 @@ int unit_file_build_name_map(
594167
 
594167
                         r = hashmap_ensure_put(&ids, &string_hash_ops_free_free, key, dst);
594167
                         if (r < 0)
594167
-                                return log_warning_errno(r, "Failed to add entry to hashmap (%s→%s): %m",
594167
-                                                         de->d_name, dst);
594167
+                                return log_warning_errno(r, "Failed to add entry to hashmap (%s%s%s): %m",
594167
+                                                         de->d_name, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), dst);
594167
                         key = dst = NULL;
594167
                 }
594167
         }
594167
@@ -612,7 +612,8 @@ int unit_file_build_name_map(
594167
 
594167
                 r = string_strv_hashmap_put(&names, dst, src);
594167
                 if (r < 0)
594167
-                        return log_warning_errno(r, "Failed to add entry to hashmap (%s→%s): %m", dst, src);
594167
+                        return log_warning_errno(r, "Failed to add entry to hashmap (%s%s%s): %m",
594167
+                                                 dst, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), src);
594167
         }
594167
 
594167
         if (cache_timestamp_hash)
594167
diff --git a/src/core/dbus-service.c b/src/core/dbus-service.c
594167
index e90fe4f596..3f7c161b0e 100644
594167
--- a/src/core/dbus-service.c
594167
+++ b/src/core/dbus-service.c
594167
@@ -493,7 +493,8 @@ static int bus_service_set_transient_property(
594167
                                         return log_oom();
594167
 
594167
                                 if (!UNIT_WRITE_FLAGS_NOOP(flags))
594167
-                                        log_unit_notice(u, "Transient unit's PIDFile= property references path below legacy directory /var/run, updating %s → %s; please update client accordingly.", n, z);
594167
+                                        log_unit_notice(u, "Transient unit's PIDFile= property references path below legacy directory /var/run, updating %s %s %s; please update client accordingly.",
594167
+                                                        n, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), z);
594167
 
594167
                                 free_and_replace(n, z);
594167
                         }
594167
diff --git a/src/core/manager-serialize.c b/src/core/manager-serialize.c
594167
index 60a35f48f3..007af3ee1f 100644
594167
--- a/src/core/manager-serialize.c
594167
+++ b/src/core/manager-serialize.c
594167
@@ -307,9 +307,11 @@ int manager_deserialize(Manager *m, FILE *f, FDSet *fds) {
594167
 
594167
                                 r = fd_get_path(fd, &fn);
594167
                                 if (r < 0)
594167
-                                        log_debug_errno(r, "Received serialized fd %i → %m", fd);
594167
+                                        log_debug_errno(r, "Received serialized fd %i %s %m",
594167
+                                                        fd, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT));
594167
                                 else
594167
-                                        log_debug("Received serialized fd %i → %s", fd, strna(fn));
594167
+                                        log_debug("Received serialized fd %i %s %s",
594167
+                                                  fd, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), strna(fn));
594167
                         }
594167
                 }
594167
         }
594167
diff --git a/src/core/namespace.c b/src/core/namespace.c
594167
index 4bd63f6227..3bf6524935 100644
594167
--- a/src/core/namespace.c
594167
+++ b/src/core/namespace.c
594167
@@ -17,6 +17,7 @@
594167
 #include "extension-release.h"
594167
 #include "fd-util.h"
594167
 #include "format-util.h"
594167
+#include "glyph-util.h"
594167
 #include "label.h"
594167
 #include "list.h"
594167
 #include "loop-util.h"
594167
@@ -1210,7 +1211,8 @@ static int follow_symlink(
594167
                                        "Symlink loop on '%s'.",
594167
                                        mount_entry_path(m));
594167
 
594167
-        log_debug("Followed mount entry path symlink %s → %s.", mount_entry_path(m), target);
594167
+        log_debug("Followed mount entry path symlink %s %s %s.",
594167
+                  mount_entry_path(m), special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), target);
594167
 
594167
         mount_entry_consume_prefix(m, TAKE_PTR(target));
594167
 
594167
@@ -1308,7 +1310,8 @@ static int apply_one_mount(
594167
                 if (r < 0)
594167
                         return log_debug_errno(r, "Failed to follow symlinks on %s: %m", mount_entry_source(m));
594167
 
594167
-                log_debug("Followed source symlinks %s → %s.", mount_entry_source(m), chased);
594167
+                log_debug("Followed source symlinks %s %s %s.",
594167
+                          mount_entry_source(m), special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), chased);
594167
 
594167
                 free_and_replace(m->source_malloc, chased);
594167
 
594167
diff --git a/src/core/socket.c b/src/core/socket.c
594167
index 8da9f14db6..cdb1e75e7a 100644
594167
--- a/src/core/socket.c
594167
+++ b/src/core/socket.c
594167
@@ -1291,7 +1291,8 @@ static int socket_symlink(Socket *s) {
594167
                 }
594167
 
594167
                 if (r < 0)
594167
-                        log_unit_warning_errno(UNIT(s), r, "Failed to create symlink %s → %s, ignoring: %m", p, *i);
594167
+                        log_unit_warning_errno(UNIT(s), r, "Failed to create symlink %s %s %s, ignoring: %m",
594167
+                                               p, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), *i);
594167
         }
594167
 
594167
         return 0;
594167
diff --git a/src/home/homed-home.c b/src/home/homed-home.c
594167
index 1340cf30d3..c78918ab1a 100644
594167
--- a/src/home/homed-home.c
594167
+++ b/src/home/homed-home.c
594167
@@ -19,6 +19,7 @@
594167
 #include "fileio.h"
594167
 #include "filesystems.h"
594167
 #include "fs-util.h"
594167
+#include "glyph-util.h"
594167
 #include "home-util.h"
594167
 #include "homed-home-bus.h"
594167
 #include "homed-home.h"
594167
@@ -479,8 +480,9 @@ static void home_set_state(Home *h, HomeState state) {
594167
         new_state = home_get_state(h); /* Query the new state, since the 'state' variable might be set to -1,
594167
                                         * in which case we synthesize an high-level state on demand */
594167
 
594167
-        log_info("%s: changing state %s → %s", h->user_name,
594167
+        log_info("%s: changing state %s %s %s", h->user_name,
594167
                  home_state_to_string(old_state),
594167
+                 special_glyph(SPECIAL_GLYPH_ARROW_RIGHT),
594167
                  home_state_to_string(new_state));
594167
 
594167
         home_update_pin_fd(h, new_state);
594167
diff --git a/src/home/homed-manager.c b/src/home/homed-manager.c
594167
index f04b87e366..f70c9f95e4 100644
594167
--- a/src/home/homed-manager.c
594167
+++ b/src/home/homed-manager.c
594167
@@ -23,6 +23,7 @@
594167
 #include "fileio.h"
594167
 #include "format-util.h"
594167
 #include "fs-util.h"
594167
+#include "glyph-util.h"
594167
 #include "gpt.h"
594167
 #include "home-util.h"
594167
 #include "homed-conf.h"
594167
@@ -1939,8 +1940,10 @@ static int manager_rebalance_calculate(Manager *m) {
594167
                     (m->rebalance_state == REBALANCE_GROWING && h->rebalance_goal < h->rebalance_size))
594167
                         h->rebalance_pending = false;
594167
                 else {
594167
-                        log_debug("Rebalancing home directory '%s' %s → %s.", h->user_name,
594167
-                                  FORMAT_BYTES(h->rebalance_size), FORMAT_BYTES(h->rebalance_goal));
594167
+                        log_debug("Rebalancing home directory '%s' %s %s %s.", h->user_name,
594167
+                                  FORMAT_BYTES(h->rebalance_size),
594167
+                                  special_glyph(SPECIAL_GLYPH_ARROW_RIGHT),
594167
+                                  FORMAT_BYTES(h->rebalance_goal));
594167
                         h->rebalance_pending = true;
594167
                 }
594167
 
594167
diff --git a/src/home/homework-luks.c b/src/home/homework-luks.c
594167
index f8f4afb253..f5653b4e14 100644
594167
--- a/src/home/homework-luks.c
594167
+++ b/src/home/homework-luks.c
594167
@@ -28,6 +28,7 @@
594167
 #include "filesystems.h"
594167
 #include "fs-util.h"
594167
 #include "fsck-util.h"
594167
+#include "glyph-util.h"
594167
 #include "home-util.h"
594167
 #include "homework-luks.h"
594167
 #include "homework-mount.h"
594167
@@ -3312,12 +3313,15 @@ int home_resize_luks(
594167
         if (resize_type == CAN_RESIZE_OFFLINE && FLAGS_SET(flags, HOME_SETUP_ALREADY_ACTIVATED))
594167
                 return log_error_errno(SYNTHETIC_ERRNO(ETXTBSY), "File systems of this type can only be resized offline, but is currently online.");
594167
 
594167
-        log_info("Ready to resize image size %s → %s, partition size %s → %s, file system size %s → %s.",
594167
+        log_info("Ready to resize image size %s %s %s, partition size %s %s %s, file system size %s %s %s.",
594167
                  FORMAT_BYTES(old_image_size),
594167
+                 special_glyph(SPECIAL_GLYPH_ARROW_RIGHT),
594167
                  FORMAT_BYTES(new_image_size),
594167
                  FORMAT_BYTES(setup->partition_size),
594167
+                 special_glyph(SPECIAL_GLYPH_ARROW_RIGHT),
594167
                  FORMAT_BYTES(new_partition_size),
594167
                  FORMAT_BYTES(old_fs_size),
594167
+                 special_glyph(SPECIAL_GLYPH_ARROW_RIGHT),
594167
                  FORMAT_BYTES(new_fs_size));
594167
 
594167
         r = prepare_resize_partition(
594167
diff --git a/src/home/homework-mount.c b/src/home/homework-mount.c
594167
index 0b028dad37..6dc665e323 100644
594167
--- a/src/home/homework-mount.c
594167
+++ b/src/home/homework-mount.c
594167
@@ -7,6 +7,7 @@
594167
 #include "alloc-util.h"
594167
 #include "fd-util.h"
594167
 #include "format-util.h"
594167
+#include "glyph-util.h"
594167
 #include "home-util.h"
594167
 #include "homework-mount.h"
594167
 #include "homework.h"
594167
@@ -283,7 +284,8 @@ int home_shift_uid(int dir_fd, const char *target, uid_t stored_uid, uid_t expos
594167
         if (r < 0)
594167
                 return log_error_errno(errno, "Failed to apply UID/GID map: %m");
594167
 
594167
-        log_debug("Applied uidmap mount to %s. Mapping is " UID_FMT " → " UID_FMT ".", strna(target), stored_uid, exposed_uid);
594167
+        log_debug("Applied uidmap mount to %s. Mapping is " UID_FMT " %s " UID_FMT ".",
594167
+                  strna(target), stored_uid, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), exposed_uid);
594167
 
594167
         if (ret_mount_fd)
594167
                 *ret_mount_fd = TAKE_FD(mount_fd);
594167
diff --git a/src/libsystemd/sd-bus/sd-bus.c b/src/libsystemd/sd-bus/sd-bus.c
594167
index 9e1d29cc1d..d117199cf9 100644
594167
--- a/src/libsystemd/sd-bus/sd-bus.c
594167
+++ b/src/libsystemd/sd-bus/sd-bus.c
594167
@@ -30,6 +30,7 @@
594167
 #include "def.h"
594167
 #include "errno-util.h"
594167
 #include "fd-util.h"
594167
+#include "glyph-util.h"
594167
 #include "hexdecoct.h"
594167
 #include "hostname-util.h"
594167
 #include "io-util.h"
594167
@@ -521,7 +522,8 @@ void bus_set_state(sd_bus *bus, enum bus_state state) {
594167
         if (state == bus->state)
594167
                 return;
594167
 
594167
-        log_debug("Bus %s: changing state %s → %s", strna(bus->description), table[bus->state], table[state]);
594167
+        log_debug("Bus %s: changing state %s %s %s", strna(bus->description),
594167
+                  table[bus->state], special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), table[state]);
594167
         bus->state = state;
594167
 }
594167
 
594167
diff --git a/src/network/networkd-link.c b/src/network/networkd-link.c
594167
index f409d1f33a..15c188cb6d 100644
594167
--- a/src/network/networkd-link.c
594167
+++ b/src/network/networkd-link.c
594167
@@ -26,6 +26,7 @@
594167
 #include "fileio.h"
594167
 #include "format-util.h"
594167
 #include "fs-util.h"
594167
+#include "glyph-util.h"
594167
 #include "ipvlan.h"
594167
 #include "missing_network.h"
594167
 #include "netlink-util.h"
594167
@@ -2122,7 +2123,8 @@ static int link_update_master(Link *link, sd_netlink_message *message) {
594167
         else if (master_ifindex == 0)
594167
                 log_link_debug(link, "Leaved from master interface: %i", link->master_ifindex);
594167
         else
594167
-                log_link_debug(link, "Master interface is changed: %i → %i", link->master_ifindex, master_ifindex);
594167
+                log_link_debug(link, "Master interface changed: %i %s %i", link->master_ifindex,
594167
+                               special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), master_ifindex);
594167
 
594167
         link_drop_from_master(link);
594167
 
594167
@@ -2158,8 +2160,10 @@ static int link_update_hardware_address(Link *link, sd_netlink_message *message)
594167
         if (link->hw_addr.length == 0)
594167
                 log_link_debug(link, "Saved hardware address: %s", HW_ADDR_TO_STR(&addr));
594167
         else {
594167
-                log_link_debug(link, "Hardware address is changed: %s → %s",
594167
-                               HW_ADDR_TO_STR(&link->hw_addr), HW_ADDR_TO_STR(&addr));
594167
+                log_link_debug(link, "Hardware address is changed: %s %s %s",
594167
+                               HW_ADDR_TO_STR(&link->hw_addr),
594167
+                               special_glyph(SPECIAL_GLYPH_ARROW_RIGHT),
594167
+                               HW_ADDR_TO_STR(&addr));
594167
 
594167
                 if (hashmap_get(link->manager->links_by_hw_addr, &link->hw_addr) == link)
594167
                         hashmap_remove(link->manager->links_by_hw_addr, &link->hw_addr);
594167
@@ -2256,8 +2260,9 @@ static int link_update_mtu(Link *link, sd_netlink_message *message) {
594167
                 return 0;
594167
 
594167
         if (link->mtu != 0)
594167
-                log_link_debug(link, "MTU is changed: %"PRIu32" → %"PRIu32" (min: %"PRIu32", max: %"PRIu32")",
594167
-                               link->mtu, mtu, link->min_mtu, link->max_mtu);
594167
+                log_link_debug(link, "MTU is changed: %"PRIu32" %s %"PRIu32" (min: %"PRIu32", max: %"PRIu32")",
594167
+                               link->mtu, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), mtu,
594167
+                               link->min_mtu, link->max_mtu);
594167
 
594167
         link->mtu = mtu;
594167
 
594167
diff --git a/src/partition/repart.c b/src/partition/repart.c
594167
index 9f95713130..d41411caeb 100644
594167
--- a/src/partition/repart.c
594167
+++ b/src/partition/repart.c
594167
@@ -1096,7 +1096,8 @@ static int config_parse_size4096(
594167
                 *sz = parsed;
594167
 
594167
         if (*sz != parsed)
594167
-                log_syntax(unit, LOG_NOTICE, filename, line, r, "Rounded %s= size %" PRIu64 " → %" PRIu64 ", a multiple of 4096.", lvalue, parsed, *sz);
594167
+                log_syntax(unit, LOG_NOTICE, filename, line, r, "Rounded %s= size %" PRIu64 " %s %" PRIu64 ", a multiple of 4096.",
594167
+                           lvalue, parsed, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), *sz);
594167
 
594167
         return 0;
594167
 }
594167
@@ -4295,8 +4296,8 @@ static int parse_argv(int argc, char *argv[]) {
594167
                                 return log_error_errno(SYNTHETIC_ERRNO(ERANGE), "Specified image size too large, refusing.");
594167
 
594167
                         if (rounded != parsed)
594167
-                                log_warning("Specified size is not a multiple of 4096, rounding up automatically. (%" PRIu64 " → %" PRIu64 ")",
594167
-                                            parsed, rounded);
594167
+                                log_warning("Specified size is not a multiple of 4096, rounding up automatically. (%" PRIu64 " %s %" PRIu64 ")",
594167
+                                            parsed, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), rounded);
594167
 
594167
                         arg_size = rounded;
594167
                         arg_size_auto = false;
594167
diff --git a/src/resolve/resolved-dns-query.c b/src/resolve/resolved-dns-query.c
594167
index 3b5e456db2..ddb66c4659 100644
594167
--- a/src/resolve/resolved-dns-query.c
594167
+++ b/src/resolve/resolved-dns-query.c
594167
@@ -3,6 +3,7 @@
594167
 #include "alloc-util.h"
594167
 #include "dns-domain.h"
594167
 #include "dns-type.h"
594167
+#include "glyph-util.h"
594167
 #include "hostname-util.h"
594167
 #include "local-addresses.h"
594167
 #include "resolved-dns-query.h"
594167
@@ -1016,7 +1017,10 @@ static int dns_query_cname_redirect(DnsQuery *q, const DnsResourceRecord *cname)
594167
         if (r < 0)
594167
                 return r;
594167
         if (r > 0)
594167
-                log_debug("Following CNAME/DNAME %s → %s.", dns_question_first_name(q->question_idna), dns_question_first_name(nq_idna));
594167
+                log_debug("Following CNAME/DNAME %s %s %s.",
594167
+                          dns_question_first_name(q->question_idna),
594167
+                          special_glyph(SPECIAL_GLYPH_ARROW_RIGHT),
594167
+                          dns_question_first_name(nq_idna));
594167
 
594167
         k = dns_question_is_equal(q->question_idna, q->question_utf8);
594167
         if (k < 0)
594167
@@ -1030,7 +1034,10 @@ static int dns_query_cname_redirect(DnsQuery *q, const DnsResourceRecord *cname)
594167
                 if (k < 0)
594167
                         return k;
594167
                 if (k > 0)
594167
-                        log_debug("Following UTF8 CNAME/DNAME %s → %s.", dns_question_first_name(q->question_utf8), dns_question_first_name(nq_utf8));
594167
+                        log_debug("Following UTF8 CNAME/DNAME %s %s %s.",
594167
+                                  dns_question_first_name(q->question_utf8),
594167
+                                  special_glyph(SPECIAL_GLYPH_ARROW_RIGHT),
594167
+                                  dns_question_first_name(nq_utf8));
594167
         }
594167
 
594167
         if (r == 0 && k == 0) /* No actual cname happened? */
594167
diff --git a/src/resolve/resolved-dns-transaction.c b/src/resolve/resolved-dns-transaction.c
594167
index 0cf9912712..1ae8103a14 100644
594167
--- a/src/resolve/resolved-dns-transaction.c
594167
+++ b/src/resolve/resolved-dns-transaction.c
594167
@@ -8,6 +8,7 @@
594167
 #include "errno-list.h"
594167
 #include "errno-util.h"
594167
 #include "fd-util.h"
594167
+#include "glyph-util.h"
594167
 #include "random-util.h"
594167
 #include "resolved-dns-cache.h"
594167
 #include "resolved-dns-transaction.h"
594167
@@ -2591,21 +2592,22 @@ int dns_transaction_request_dnssec_keys(DnsTransaction *t) {
594167
                         r = dns_name_parent(&name);
594167
                         if (r > 0) {
594167
                                 type = DNS_TYPE_SOA;
594167
-                                log_debug("Requesting parent SOA (→ %s) to validate transaction %" PRIu16 " (%s, unsigned empty DS response).",
594167
-                                          name, t->id, dns_resource_key_name(dns_transaction_key(t)));
594167
+                                log_debug("Requesting parent SOA (%s %s) to validate transaction %" PRIu16 " (%s, unsigned empty DS response).",
594167
+                                          special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), name, t->id,
594167
+                                          dns_resource_key_name(dns_transaction_key(t)));
594167
                         } else
594167
                                 name = NULL;
594167
 
594167
                 } else if (IN_SET(dns_transaction_key(t)->type, DNS_TYPE_SOA, DNS_TYPE_NS)) {
594167
 
594167
                         type = DNS_TYPE_DS;
594167
-                        log_debug("Requesting DS (→ %s) to validate transaction %" PRIu16 " (%s, unsigned empty SOA/NS response).",
594167
-                                  name, t->id, name);
594167
+                        log_debug("Requesting DS (%s %s) to validate transaction %" PRIu16 " (%s, unsigned empty SOA/NS response).",
594167
+                                  special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), name, t->id, name);
594167
 
594167
                 } else {
594167
                         type = DNS_TYPE_SOA;
594167
-                        log_debug("Requesting SOA (→ %s) to validate transaction %" PRIu16 " (%s, unsigned empty non-SOA/NS/DS response).",
594167
-                                  name, t->id, name);
594167
+                        log_debug("Requesting SOA (%s %s) to validate transaction %" PRIu16 " (%s, unsigned empty non-SOA/NS/DS response).",
594167
+                                  special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), name, t->id, name);
594167
                 }
594167
 
594167
                 if (name) {
594167
diff --git a/src/run-generator/run-generator.c b/src/run-generator/run-generator.c
594167
index fb62209704..e3fb7f24fe 100644
594167
--- a/src/run-generator/run-generator.c
594167
+++ b/src/run-generator/run-generator.c
594167
@@ -7,6 +7,7 @@
594167
 #include "fd-util.h"
594167
 #include "fileio.h"
594167
 #include "generator.h"
594167
+#include "glyph-util.h"
594167
 #include "mkdir.h"
594167
 #include "proc-cmdline.h"
594167
 #include "special.h"
594167
@@ -116,7 +117,8 @@ static int generate(void) {
594167
         /* And now redirect default.target to our new target */
594167
         p = strjoina(arg_dest, "/" SPECIAL_DEFAULT_TARGET);
594167
         if (symlink("kernel-command-line.target", p) < 0)
594167
-                return log_error_errno(errno, "Failed to link unit file kernel-command-line.target → %s: %m", p);
594167
+                return log_error_errno(errno, "Failed to link unit file kernel-command-line.target %s %s: %m",
594167
+                                       special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), p);
594167
 
594167
         return 0;
594167
 }
594167
diff --git a/src/shared/devnode-acl.c b/src/shared/devnode-acl.c
594167
index 89ff566832..21d8130e0d 100644
594167
--- a/src/shared/devnode-acl.c
594167
+++ b/src/shared/devnode-acl.c
594167
@@ -12,6 +12,7 @@
594167
 #include "escape.h"
594167
 #include "fd-util.h"
594167
 #include "format-util.h"
594167
+#include "glyph-util.h"
594167
 #include "set.h"
594167
 #include "string-util.h"
594167
 #include "util.h"
594167
@@ -242,8 +243,8 @@ int devnode_acl_all(const char *seat,
594167
         SET_FOREACH(n, nodes) {
594167
                 int k;
594167
 
594167
-                log_debug("Changing ACLs at %s for seat %s (uid "UID_FMT"→"UID_FMT"%s%s)",
594167
-                          n, seat, old_uid, new_uid,
594167
+                log_debug("Changing ACLs at %s for seat %s (uid "UID_FMT"%s"UID_FMT"%s%s)",
594167
+                          n, seat, old_uid, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), new_uid,
594167
                           del ? " del" : "", add ? " add" : "");
594167
 
594167
                 k = devnode_acl(n, flush, del, old_uid, add, new_uid);
594167
diff --git a/src/shared/dns-domain.c b/src/shared/dns-domain.c
594167
index f54b187a1b..49ce9cfa10 100644
594167
--- a/src/shared/dns-domain.c
594167
+++ b/src/shared/dns-domain.c
594167
@@ -7,6 +7,7 @@
594167
 
594167
 #include "alloc-util.h"
594167
 #include "dns-domain.h"
594167
+#include "glyph-util.h"
594167
 #include "hashmap.h"
594167
 #include "hexdecoct.h"
594167
 #include "hostname-util.h"
594167
@@ -1300,7 +1301,7 @@ int dns_name_apply_idna(const char *name, char **ret) {
594167
                 r = sym_idn2_lookup_u8((uint8_t*) name, (uint8_t**) &t,
594167
                                        IDN2_NFC_INPUT | IDN2_TRANSITIONAL);
594167
 
594167
-        log_debug("idn2_lookup_u8: %s → %s", name, t);
594167
+        log_debug("idn2_lookup_u8: %s %s %s", name, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), t);
594167
         if (r == IDN2_OK) {
594167
                 if (!startswith(name, "xn--")) {
594167
                         _cleanup_free_ char *s = NULL;
594167
@@ -1314,8 +1315,9 @@ int dns_name_apply_idna(const char *name, char **ret) {
594167
                         }
594167
 
594167
                         if (!streq_ptr(name, s)) {
594167
-                                log_debug("idn2 roundtrip failed: \"%s\" → \"%s\" → \"%s\", ignoring.",
594167
-                                          name, t, s);
594167
+                                log_debug("idn2 roundtrip failed: \"%s\" %s \"%s\" %s \"%s\", ignoring.",
594167
+                                          name, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), t,
594167
+                                          special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), s);
594167
                                 *ret = NULL;
594167
                                 return 0;
594167
                         }
594167
diff --git a/src/shared/install.c b/src/shared/install.c
594167
index 4c7d0d6cad..d3661521a9 100644
594167
--- a/src/shared/install.c
594167
+++ b/src/shared/install.c
594167
@@ -523,7 +523,8 @@ static int create_symlink(
594167
         }
594167
 
594167
         if (chroot_unit_symlinks_equivalent(lp, new_path, dest, old_path)) {
594167
-                log_debug("Symlink %s → %s already exists", new_path, dest);
594167
+                log_debug("Symlink %s %s %s already exists",
594167
+                          new_path, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), dest);
594167
                 return 1;
594167
         }
594167
 
594167
diff --git a/src/shared/mount-util.c b/src/shared/mount-util.c
594167
index 12c7044f04..e0c8cff14a 100644
594167
--- a/src/shared/mount-util.c
594167
+++ b/src/shared/mount-util.c
594167
@@ -17,6 +17,7 @@
594167
 #include "fd-util.h"
594167
 #include "fileio.h"
594167
 #include "fs-util.h"
594167
+#include "glyph-util.h"
594167
 #include "hashmap.h"
594167
 #include "label.h"
594167
 #include "libmount-util.h"
594167
@@ -672,8 +673,8 @@ int mount_verbose_full(
594167
                 log_debug("Bind-mounting %s on %s (%s \"%s\")...",
594167
                           what, where, strnull(fl), strempty(o));
594167
         else if (f & MS_MOVE)
594167
-                log_debug("Moving mount %s → %s (%s \"%s\")...",
594167
-                          what, where, strnull(fl), strempty(o));
594167
+                log_debug("Moving mount %s %s %s (%s \"%s\")...",
594167
+                          what, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), where, strnull(fl), strempty(o));
594167
         else
594167
                 log_debug("Mounting %s (%s) on %s (%s \"%s\")...",
594167
                           strna(what), strna(type), where, strnull(fl), strempty(o));
594167
diff --git a/src/shared/varlink.c b/src/shared/varlink.c
594167
index e0038dfd28..f18301d3c4 100644
594167
--- a/src/shared/varlink.c
594167
+++ b/src/shared/varlink.c
594167
@@ -6,6 +6,7 @@
594167
 #include "alloc-util.h"
594167
 #include "errno-util.h"
594167
 #include "fd-util.h"
594167
+#include "glyph-util.h"
594167
 #include "hashmap.h"
594167
 #include "io-util.h"
594167
 #include "list.h"
594167
@@ -236,8 +237,9 @@ static void varlink_set_state(Varlink *v, VarlinkState state) {
594167
                 varlink_log(v, "Setting state %s",
594167
                             varlink_state_to_string(state));
594167
         else
594167
-                varlink_log(v, "Changing state %s → %s",
594167
+                varlink_log(v, "Changing state %s %s %s",
594167
                             varlink_state_to_string(v->state),
594167
+                            special_glyph(SPECIAL_GLYPH_ARROW_RIGHT),
594167
                             varlink_state_to_string(state));
594167
 
594167
         v->state = state;
594167
diff --git a/src/udev/udev-builtin-net_id.c b/src/udev/udev-builtin-net_id.c
594167
index 673ed7a7ca..1ca7983cfe 100644
594167
--- a/src/udev/udev-builtin-net_id.c
594167
+++ b/src/udev/udev-builtin-net_id.c
594167
@@ -28,6 +28,7 @@
594167
 #include "dirent-util.h"
594167
 #include "fd-util.h"
594167
 #include "fileio.h"
594167
+#include "glyph-util.h"
594167
 #include "netif-naming-scheme.h"
594167
 #include "parse-util.h"
594167
 #include "proc-cmdline.h"
594167
@@ -215,9 +216,9 @@ static int dev_pci_onboard(sd_device *dev, const LinkInfo *info, NetNames *names
594167
                 l = strpcpyf(&s, l, "d%lu", dev_port);
594167
         if (l == 0)
594167
                 names->pci_onboard[0] = '\0';
594167
-        log_device_debug(dev, "Onboard index identifier: index=%lu phys_port=%s dev_port=%lu → %s",
594167
+        log_device_debug(dev, "Onboard index identifier: index=%lu phys_port=%s dev_port=%lu %s %s",
594167
                          idx, strempty(info->phys_port_name), dev_port,
594167
-                         empty_to_na(names->pci_slot));
594167
+                         special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), empty_to_na(names->pci_slot));
594167
 
594167
         if (sd_device_get_sysattr_value(names->pcidev, "label", &names->pci_onboard_label) >= 0)
594167
                 log_device_debug(dev, "Onboard label from PCI device: %s", names->pci_onboard_label);
594167
@@ -393,9 +394,9 @@ static int dev_pci_slot(sd_device *dev, const LinkInfo *info, NetNames *names) {
594167
         if (l == 0)
594167
                 names->pci_path[0] = '\0';
594167
 
594167
-        log_device_debug(dev, "PCI path identifier: domain=%u bus=%u slot=%u func=%u phys_port=%s dev_port=%lu → %s",
594167
+        log_device_debug(dev, "PCI path identifier: domain=%u bus=%u slot=%u func=%u phys_port=%s dev_port=%lu %s %s",
594167
                          domain, bus, slot, func, strempty(info->phys_port_name), dev_port,
594167
-                         empty_to_na(names->pci_path));
594167
+                         special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), empty_to_na(names->pci_path));
594167
 
594167
         /* ACPI _SUN — slot user number */
594167
         r = sd_device_new_from_subsystem_sysname(&pci, "subsystem", "pci");
594167
@@ -487,9 +488,9 @@ static int dev_pci_slot(sd_device *dev, const LinkInfo *info, NetNames *names) {
594167
                 if (l == 0)
594167
                         names->pci_slot[0] = '\0';
594167
 
594167
-                log_device_debug(dev, "Slot identifier: domain=%u slot=%"PRIu32" func=%u phys_port=%s dev_port=%lu → %s",
594167
+                log_device_debug(dev, "Slot identifier: domain=%u slot=%"PRIu32" func=%u phys_port=%s dev_port=%lu %s %s",
594167
                                  domain, hotplug_slot, func, strempty(info->phys_port_name), dev_port,
594167
-                                 empty_to_na(names->pci_slot));
594167
+                                 special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), empty_to_na(names->pci_slot));
594167
         }
594167
 
594167
         return 0;
594167
@@ -529,7 +530,8 @@ static int names_vio(sd_device *dev, NetNames *names) {
594167
 
594167
         xsprintf(names->vio_slot, "v%u", slotid);
594167
         names->type = NET_VIO;
594167
-        log_device_debug(dev, "Vio slot identifier: slotid=%u → %s", slotid, names->vio_slot);
594167
+        log_device_debug(dev, "Vio slot identifier: slotid=%u %s %s",
594167
+                         slotid, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), names->vio_slot);
594167
         return 0;
594167
 }
594167
 
594167
@@ -596,8 +598,8 @@ static int names_platform(sd_device *dev, NetNames *names, bool test) {
594167
 
594167
         xsprintf(names->platform_path, "a%s%xi%u", vendor, model, instance);
594167
         names->type = NET_PLATFORM;
594167
-        log_device_debug(dev, "Platform identifier: vendor=%s model=%u instance=%u → %s",
594167
-                         vendor, model, instance, names->platform_path);
594167
+        log_device_debug(dev, "Platform identifier: vendor=%s model=%u instance=%u %s %s",
594167
+                         vendor, model, instance, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), names->platform_path);
594167
         return 0;
594167
 }
594167
 
594167
@@ -718,8 +720,9 @@ static int names_usb(sd_device *dev, NetNames *names) {
594167
         if (l == 0)
594167
                 return log_device_debug_errno(dev, SYNTHETIC_ERRNO(ENAMETOOLONG),
594167
                                               "Generated USB name would be too long.");
594167
-        log_device_debug(dev, "USB name identifier: ports=%.*s config=%s interface=%s → %s",
594167
-                         (int) strlen(ports), sysname + (ports - name), config, interf, names->usb_ports);
594167
+        log_device_debug(dev, "USB name identifier: ports=%.*s config=%s interface=%s %s %s",
594167
+                         (int) strlen(ports), sysname + (ports - name), config, interf,
594167
+                         special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), names->usb_ports);
594167
         names->type = NET_USB;
594167
         return 0;
594167
 }
594167
@@ -752,7 +755,8 @@ static int names_bcma(sd_device *dev, NetNames *names) {
594167
                 xsprintf(names->bcma_core, "b%u", core);
594167
 
594167
         names->type = NET_BCMA;
594167
-        log_device_debug(dev, "BCMA core identifier: core=%u → \"%s\"", core, names->bcma_core);
594167
+        log_device_debug(dev, "BCMA core identifier: core=%u %s \"%s\"",
594167
+                         core, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), names->bcma_core);
594167
         return 0;
594167
 }
594167
 
594167
@@ -813,7 +817,8 @@ static int names_ccw(sd_device *dev, NetNames *names) {
594167
                 return log_device_debug_errno(dev, SYNTHETIC_ERRNO(ENAMETOOLONG),
594167
                                               "Generated CCW name would be too long.");
594167
         names->type = NET_CCW;
594167
-        log_device_debug(dev, "CCW identifier: ccw_busid=%s → \"%s\"", bus_id, names->ccw_busid);
594167
+        log_device_debug(dev, "CCW identifier: ccw_busid=%s %s \"%s\"",
594167
+                         bus_id, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), names->ccw_busid);
594167
         return 0;
594167
 }
594167
 
594167
@@ -1027,8 +1032,9 @@ static int builtin_net_id(sd_device *dev, sd_netlink **rtnl, int argc, char *arg
594167
 
594167
                 xsprintf(str, "%sx%s", prefix, HW_ADDR_TO_STR_FULL(&info.hw_addr, HW_ADDR_TO_STRING_NO_COLON));
594167
                 udev_builtin_add_property(dev, test, "ID_NET_NAME_MAC", str);
594167
-                log_device_debug(dev, "MAC address identifier: hw_addr=%s → %s",
594167
-                                 HW_ADDR_TO_STR(&info.hw_addr), str + strlen(prefix));
594167
+                log_device_debug(dev, "MAC address identifier: hw_addr=%s %s %s",
594167
+                                 HW_ADDR_TO_STR(&info.hw_addr),
594167
+                                 special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), str + strlen(prefix));
594167
 
594167
                 ieee_oui(dev, &info, test);
594167
         }