diff --git a/debian/control b/debian/control index 9c7891e61ff646c03c54fa79186d64be0aeb4c53..802b5b6f5e4fac377d2d3435cf12729e31b5deed 100644 --- a/debian/control +++ b/debian/control @@ -25,6 +25,7 @@ Build-Depends: gsettings-desktop-schemas , phoc , phosh (>= 0.40.0~) , + phosh-plugins (>= 0.40.0~) , xauth , xvfb , xwayland , diff --git a/src/ms-feedback-panel.c b/src/ms-feedback-panel.c index a07ef0c3fe2cb5b3ef62ca18daf3d22f44afe5b7..195455afafcf4eab9acc779872d516f788f65f80 100644 --- a/src/ms-feedback-panel.c +++ b/src/ms-feedback-panel.c @@ -845,7 +845,8 @@ on_check_alarm_app_ready (GObject *source_object, GAsyncResult *res, gpointer us &err); if (!success) { - g_warning ("Failed to check for alarm app: %s", err->message); + if (!success && !g_error_matches (err, G_IO_ERROR, G_IO_ERROR_CANCELLED)) + g_warning ("Failed to check for alarm app: %s", err->message); return; } diff --git a/src/ms-plugin-list-box.c b/src/ms-plugin-list-box.c index 85716c7b2fb72a7ab7afbd9a3603d3fe2474c1cc..43aa8d10ceb7618373f546ca9d104aa933052e5a 100644 --- a/src/ms-plugin-list-box.c +++ b/src/ms-plugin-list-box.c @@ -297,7 +297,7 @@ ms_plugin_list_box_scan_phosh_plugins (MsPluginListBox *self) g_warning ("Plugin '%s' has no type. Please fix", name); if (icon_name == NULL) - g_warning ("Failed to get icon for %s plugin", name); + g_debug ("Failed to get icon for %s plugin", name); if (!g_strv_contains ((const char *const *)types, self->plugin_type)) continue;