From 2a1e75da7268e204b8186debc02d1cba77d3da43 Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Fri, 18 Dec 2015 17:42:53 +0000 Subject: [PATCH] Only dump the profiling data when run with --verbose Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1292059 --- src/fu-main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/fu-main.c b/src/fu-main.c index 2cb41c654..14e479553 100644 --- a/src/fu-main.c +++ b/src/fu-main.c @@ -1571,7 +1571,8 @@ fu_main_on_bus_acquired_cb (GDBusConnection *connection, } /* dump startup profile data */ - as_profile_dump (priv->profile); + if (fu_debug_is_verbose ()) + as_profile_dump (priv->profile); } /**