From 9c104e909c34c55030f2c8eacc74e846965fb8fc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Hermann=20H=C3=B6hne?= <hoehermann@gmx.de>
Date: Sat, 28 Sep 2024 13:43:31 +0200
Subject: [PATCH] For this debug output, info is more approptiate than warning.

---
 src/c/groups.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/c/groups.c b/src/c/groups.c
index a98ae1f..4713a9e 100755
--- a/src/c/groups.c
+++ b/src/c/groups.c
@@ -134,7 +134,7 @@ void presage_handle_groups(PurpleConnection *connection, const Group *groups, ui
 
     // TODO: add group to blist
     for (uint64_t i = 0; i < length; i++) {
-        purple_debug_warning(PLUGIN_NAME, "got group %s ā€ž%sā€œ with %" PRIu64 " members\n", groups[i].key, groups[i].title, groups[i].population);
+        purple_debug_info(PLUGIN_NAME, "got group %s ā€ž%sā€œ with %" PRIu64 " members\n", groups[i].key, groups[i].title, groups[i].population);
         if (groups[i].population == 0) {
             // An empty group. This is not a group, but rather a contact.
             // TODO: Declare an addtional type for more clarity. Use separate code-paths.