aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2013-02-19 12:52:01 +0100
committerAleksander Morgado <aleksander@lanedo.com>2013-02-19 12:52:01 +0100
commit37ddfe202eb138ab50140cc0e2a0309092547bbf (patch)
tree958bb3aa080aa411e65c580884e8944a0183ef13
parented2b32c6829ad6ed9310f2f76047a6dc2e12d9dd (diff)
plugin-manager: log time required for device probing
-rw-r--r--src/mm-plugin-manager.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/src/mm-plugin-manager.c b/src/mm-plugin-manager.c
index 940990e3..42dcb3ff 100644
--- a/src/mm-plugin-manager.c
+++ b/src/mm-plugin-manager.c
@@ -57,6 +57,7 @@ typedef struct {
MMPluginManager *self;
MMDevice *device;
GSimpleAsyncResult *result;
+ GTimer *timer;
guint timeout_id;
gulong grabbed_id;
gulong released_id;
@@ -101,6 +102,11 @@ find_device_support_context_complete_and_free (FindDeviceSupportContext *ctx)
{
g_assert (ctx->timeout_id == 0);
+ mm_dbg ("(Plugin Manager) [%s] device support check finished in '%lf' seconds",
+ mm_device_get_path (ctx->device),
+ g_timer_elapsed (ctx->timer, NULL));
+ g_timer_destroy (ctx->timer);
+
/* Set async operation result */
if (!mm_device_peek_plugin (ctx->device)) {
g_simple_async_result_set_error (ctx->result,
@@ -226,8 +232,10 @@ port_probe_context_finished (PortProbeContext *port_probe_ctx)
}
/* If we didn't use the minimum probing time, wait for it to finish */
else if (ctx->timeout_id > 0) {
- mm_dbg ("(Plugin Manager) '%s' port probe finished, last one in device, but minimum probing time not consumed yet",
- g_udev_device_get_name (port_probe_ctx->port));
+ mm_dbg ("(Plugin Manager) '%s' port probe finished, last one in device, "
+ "but minimum probing time not consumed yet ('%lf' seconds elapsed)",
+ g_udev_device_get_name (port_probe_ctx->port),
+ g_timer_elapsed (ctx->timer, NULL));
} else {
mm_dbg ("(Plugin Manager) '%s' port probe finished, last one in device",
g_udev_device_get_name (port_probe_ctx->port));
@@ -597,6 +605,9 @@ mm_plugin_manager_find_device_support (MMPluginManager *self,
{
FindDeviceSupportContext *ctx;
+ mm_dbg ("(Plugin Manager) [%s] Checking device support...",
+ mm_device_get_path (device));
+
ctx = g_slice_new0 (FindDeviceSupportContext);
ctx->self = g_object_ref (self);
ctx->device = g_object_ref (device);
@@ -620,6 +631,7 @@ mm_plugin_manager_find_device_support (MMPluginManager *self,
* bring up ports. Given that we launch this only when the first port of the
* device has been exposed in udev, this timeout effectively means that we
* leave up to 2s to the remaining ports to appear. */
+ ctx->timer = g_timer_new ();
ctx->timeout_id = g_timeout_add_seconds (MIN_PROBING_TIME_SECS,
(GSourceFunc)min_probing_timeout_cb,
ctx);