From: Philip Withnall Date: Mon, 22 Jun 2026 19:20:20 +0000 (+0100) Subject: sysupdate: Downgrade an info to a debug log message X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8c166bc35e0cf1b79ebdda32a9dc396c39ce90c4;p=thirdparty%2Fsystemd.git sysupdate: Downgrade an info to a debug log message 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. --- diff --git a/src/sysupdate/sysupdate.c b/src/sysupdate/sysupdate.c index cd9325ee57e..01c5c2dd56b 100644 --- a/src/sysupdate/sysupdate.c +++ b/src/sysupdate/sysupdate.c @@ -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;