Skip to content

Commit

Permalink
Reduce some log-spam when checking item ages
Browse files Browse the repository at this point in the history
Fixes #29
  • Loading branch information
hughsie committed Mar 4, 2024
1 parent aadde4b commit 05e6b2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/passim-server.c
Original file line number Diff line number Diff line change
Expand Up @@ -948,7 +948,7 @@ static void
passim_server_check_item_age(PassimServer *self)
{
g_autoptr(GList) items = g_hash_table_get_values(self->items);
g_info("checking for max-age");
g_debug("checking for max-age");
for (GList *l = items; l != NULL; l = l->next) {
PassimItem *item = PASSIM_ITEM(l->data);
guint32 age = passim_item_get_age(item);
Expand Down

0 comments on commit 05e6b2c

Please sign in to comment.