pidgin/pidgin

Parents a80230105e43
Children 29a087e1ad51
Adjust some debug levels which were throwing warning messages when they shouldn't have

Testing Done:
ran in a devenv with `G_DEBUG=fatal-warnings gdb --args pidgin3` and verified these no longer halted the program.

Reviewed at https://reviews.imfreedom.org/r/1089/
--- a/pidgin/gtkidle.c Wed Oct 20 02:55:43 2021 -0500
+++ b/pidgin/gtkidle.c Fri Oct 22 01:22:34 2021 -0500
@@ -176,7 +176,7 @@
}
if (reply == NULL) {
- purple_debug_warning("gtkidle",
+ purple_debug_info("gtkidle",
"Failed to query ScreenSaver active time: "
"No working ScreenSaver interfaces");
return 0;
--- a/pidgin/pidginapplication.c Wed Oct 20 02:55:43 2021 -0500
+++ b/pidgin/pidginapplication.c Fri Oct 22 01:22:34 2021 -0500
@@ -509,8 +509,8 @@
search_path = g_build_filename(purple_config_dir(), "gtk-3.0.css", NULL);
gtk_css_provider_load_from_path(provider, search_path, &error);
if(error != NULL) {
- purple_debug_error("gtk", "Unable to load custom gtk-3.0.css: %s\n",
- error->message);
+ purple_debug_info("gtk", "Unable to load custom gtk-3.0.css: %s\n",
+ error->message);
g_clear_error(&error);
} else {
GdkScreen *screen = gdk_screen_get_default();