summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Leeds <matthew.leeds@endlessm.com>2020-04-04 19:37:28 -0700
committerAlexander Larsson <alexander.larsson@gmail.com>2020-04-16 09:22:11 +0200
commit56071df5fbc2c32590ac983afd783b785a4ba0c9 (patch)
treec9116a46134a9ac821b68c790fadf574a6e588d3
parentf05e4f97ecf1d0bae8482e17c215c4298f0117e6 (diff)
downloadflatpak-56071df5fbc2c32590ac983afd783b785a4ba0c9.tar.gz
installation: Replace some debug statements
These were committed recently by accident; use g_debug() instead.
-rw-r--r--common/flatpak-installation.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/flatpak-installation.c b/common/flatpak-installation.c
index 48c61faf..52fd41cd 100644
--- a/common/flatpak-installation.c
+++ b/common/flatpak-installation.c
@@ -1070,7 +1070,7 @@ flatpak_installation_list_installed_refs_for_update (FlatpakInstallation *self,
const char *ref = refs_app[i];
if (ref_check_for_update (dir, ref, remote_states, cancellable))
{
- g_printerr ("adding update %s\n", ref);
+ g_debug ("%s: Installed ref %s needs update", G_STRFUNC, ref);
FlatpakInstalledRef *installed_ref = get_ref (dir, ref, cancellable, NULL);
if (installed_ref)
g_ptr_array_add (updates, g_object_ref (installed_ref));
@@ -1085,7 +1085,7 @@ flatpak_installation_list_installed_refs_for_update (FlatpakInstallation *self,
const char *ref = refs_runtime[i];
if (ref_check_for_update (dir, ref, remote_states, cancellable))
{
- g_printerr ("adding update %s\n", ref);
+ g_debug ("%s: Installed ref %s needs update", G_STRFUNC, ref);
FlatpakInstalledRef *installed_ref = get_ref (dir, ref, cancellable, NULL);
if (installed_ref)
g_ptr_array_add (updates, g_object_ref (installed_ref));