diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-01 23:46:37 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-16 14:53:20 +0100 |
commit | f8f09692894dc30e6bfd019554783b7a18de61a2 (patch) | |
tree | 447a0217af8c70e6be1e1532ebba028e146ca571 | |
parent | 9c5c072bab444a269dd4f6c8d847191eafe0c1b6 (diff) |
plugin-base: log also when starting to check support
So that we get logs when net ports are being checked for support, which won't be
probed.
-rw-r--r-- | src/mm-plugin-base.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mm-plugin-base.c b/src/mm-plugin-base.c index deefcd14..3d7be868 100644 --- a/src/mm-plugin-base.c +++ b/src/mm-plugin-base.c @@ -622,6 +622,8 @@ supports_port (MMPlugin *plugin, goto out; } + mm_dbg ("(%s) checking port support (%s,%s)", priv->name, subsys, name); + /* Need to launch new probing */ /* Lookup current probes, there shouldn't be any (unless for net devices) */ @@ -671,7 +673,7 @@ supports_port (MMPlugin *plugin, ctx->result = g_object_ref (async_result); /* Launch the probe */ - mm_dbg ("(%s) launching probe for (%s,%s)!", priv->name, subsys, name); + mm_dbg ("(%s) launching probe for (%s,%s)", priv->name, subsys, name); mm_port_probe_run (probe, probe_run_flags, priv->send_delay, |