pidgin/pidgin

Parents 138d55c90767
Children 5397330041d6
Only use an info message if we were unable to load the system default preferences

Testing Done:
Ran the debian-bookworm-amd64 container and verified that this fixed the unit tests failing.

Reviewed at https://reviews.imfreedom.org/r/1086/
--- a/libpurple/prefs.c Fri Oct 22 01:22:34 2021 -0500
+++ b/libpurple/prefs.c Fri Oct 22 02:40:28 2021 -0500
@@ -446,7 +446,7 @@
purple_debug_info("prefs", "Reading %s\n", filename);
if (!g_file_get_contents(filename, &contents, &length, &error)) {
- purple_debug_error("prefs", "Error reading prefs: %s\n",
+ purple_debug_info("prefs", "Error reading prefs: %s\n",
error->message);
g_error_free(error);
g_free(filename);