[gnome-software] plugin loader: Slightly increase warning timeouts



commit c01aa5c8db7fd0034b5d784908d3651a0c93b244
Author: Kalev Lember <klember redhat com>
Date:   Sat Jan 27 11:52:05 2018 +0100

    plugin loader: Slightly increase warning timeouts
    
    Instead of 0.5 seconds, warn when a plugin takes longer than 1 second to
    run. We've had this warning for the appstream plugin for a while now
    during startup and it's just noise, hindering debugging / breaking in
    gdb on g_warnings.

 lib/gs-plugin-loader.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/lib/gs-plugin-loader.c b/lib/gs-plugin-loader.c
index 5eae42bb..50b8c5e6 100644
--- a/lib/gs-plugin-loader.c
+++ b/lib/gs-plugin-loader.c
@@ -773,7 +773,7 @@ gs_plugin_loader_call_vfunc (GsPluginLoaderHelper *helper,
        case GS_PLUGIN_ACTION_INITIALIZE:
        case GS_PLUGIN_ACTION_DESTROY:
        case GS_PLUGIN_ACTION_SETUP:
-               if (g_timer_elapsed (timer, NULL) > 0.5f) {
+               if (g_timer_elapsed (timer, NULL) > 1.0f) {
                        g_warning ("plugin %s took %.1f seconds to do %s",
                                   gs_plugin_get_name (plugin),
                                   g_timer_elapsed (timer, NULL),
@@ -781,7 +781,7 @@ gs_plugin_loader_call_vfunc (GsPluginLoaderHelper *helper,
                }
                break;
        default:
-               if (g_timer_elapsed (timer, NULL) > 0.5f) {
+               if (g_timer_elapsed (timer, NULL) > 1.0f) {
                        g_debug ("plugin %s took %.1f seconds to do %s",
                                 gs_plugin_get_name (plugin),
                                 g_timer_elapsed (timer, NULL),


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]