]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
sysupdate: Downgrade an info to a debug log message
authorPhilip Withnall <pwithnall@gnome.org>
Mon, 22 Jun 2026 19:20:20 +0000 (20:20 +0100)
committerPhilip Withnall <pwithnall@gnome.org>
Tue, 14 Jul 2026 13:57:35 +0000 (14:57 +0100)
Since we now enumerate all targets on a varlink call (to validate the
requested target), this message gets printed multiple times in the log.
It’s not really necessary, so downgrade it to a debug message.

src/sysupdate/sysupdate.c

index cd9325ee57e1a54c31f47aabb6df596d69c795c5..01c5c2dd56bb4035c5aabf7cd508476dc2162943 100644 (file)
@@ -469,7 +469,7 @@ static int context_load_installed_instances(Context *c) {
 
         assert(c);
 
-        log_info("Discovering installed instances%s", glyph(GLYPH_ELLIPSIS));
+        log_debug("Discovering installed instances%s", glyph(GLYPH_ELLIPSIS));
 
         FOREACH_ARRAY(tr, c->transfers, c->n_transfers) {
                 Transfer *t = *tr;