diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2020-04-08 16:14:00 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2020-04-08 17:53:42 +0200 |
commit | 4b058872a092fa85413fa905c37a6a1510a7a056 (patch) | |
tree | 51a40a9da9de918d82ec292b3d5d3cd205f83f18 /plugins/longcheer/mm-plugin-longcheer.c | |
parent | 8722215f7e6ceb00c692fc94c1915ad2671ca1ae (diff) |
plugins: don't add plugin name in log message explicitly
Diffstat (limited to 'plugins/longcheer/mm-plugin-longcheer.c')
-rw-r--r-- | plugins/longcheer/mm-plugin-longcheer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/longcheer/mm-plugin-longcheer.c b/plugins/longcheer/mm-plugin-longcheer.c index 74f6ae7a..4331d21b 100644 --- a/plugins/longcheer/mm-plugin-longcheer.c +++ b/plugins/longcheer/mm-plugin-longcheer.c @@ -69,7 +69,7 @@ gmr_ready (MMPortSerialAt *port, response = mm_port_serial_at_command_finish (port, res, NULL); if (!response) { - mm_obj_dbg (probe, "(Longcheer) retrying custom init step..."); + mm_obj_dbg (probe, "retrying custom init step..."); longcheer_custom_init_step (task); return; } @@ -88,7 +88,7 @@ gmr_ready (MMPortSerialAt *port, MM_CORE_ERROR_UNSUPPORTED, "X200 cannot be supported with the Longcheer plugin"); } else { - mm_obj_dbg (probe, "(Longcheer) device is not a X200"); + mm_obj_dbg (probe, "device is not a X200"); g_task_return_boolean (task, TRUE); } g_object_unref (task); @@ -107,7 +107,7 @@ longcheer_custom_init_step (GTask *task) /* If cancelled, end */ if (g_cancellable_is_cancelled (cancellable)) { - mm_obj_dbg (probe, "(Longcheer) no need to keep on running custom init"); + mm_obj_dbg (probe, "no need to keep on running custom init"); g_task_return_boolean (task, TRUE); g_object_unref (task); return; |