mirror of
https://github.com/flatpak/flatpak.git
synced 2026-04-04 07:11:28 -04:00
Remove some spammy debug spew
as_store_find_app() was constantly spewing things you don't really
need to see.
(cherry picked from commit 4f793a45c2)
This commit is contained in:
committed by
Alexander Larsson
parent
97c8ca0a71
commit
631ee3899f
@@ -1086,15 +1086,12 @@ as_store_find_app (AsStore *store,
|
||||
g_autofree char *desktopid = g_strconcat (appid, ".desktop", NULL);
|
||||
int j;
|
||||
|
||||
g_debug ("Looking for AsApp for '%s'", ref);
|
||||
|
||||
for (j = 0; j < 2; j++)
|
||||
{
|
||||
const char *id = j == 0 ? appid : desktopid;
|
||||
g_autoptr(GPtrArray) apps = as_store_get_apps_by_id (store, id);
|
||||
int i;
|
||||
|
||||
g_debug ("sifting through %d apps for %s", apps->len, id);
|
||||
for (i = 0; i < apps->len; i++)
|
||||
{
|
||||
AsApp *app = g_ptr_array_index (apps, i);
|
||||
|
||||
Reference in New Issue
Block a user