aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sos/plugins/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/sos/plugins/__init__.py b/sos/plugins/__init__.py
index 7eff4e65..7758fa99 100644
--- a/sos/plugins/__init__.py
+++ b/sos/plugins/__init__.py
@@ -525,10 +525,12 @@ class Plugin(object):
"""Execute a command and save the output to a file for inclusion in the
report.
"""
+ start = time()
# pylint: disable-msg = W0612
result = self.get_command_output(exe, timeout=timeout, runat=runat)
if (result['status'] == 127):
return None
+ self.log_debug("collected output of '%s' in %s" % (exe.split()[0], time() - start))
if suggest_filename:
outfn = self.make_command_filename(suggest_filename)