mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-29 14:34:09 +00:00
trivial: Include the possible plugins in the FuDevice->to_string output
This commit is contained in:
parent
9d3605adad
commit
3dbfc21171
@ -2315,6 +2315,10 @@ fu_device_add_string (FuDevice *self, guint idt, GString *str)
|
||||
fu_common_string_append_kv (str, idt + 1, key, value);
|
||||
}
|
||||
}
|
||||
for (guint i = 0; i < priv->possible_plugins->len; i++) {
|
||||
const gchar *name = g_ptr_array_index (priv->possible_plugins, i);
|
||||
fu_common_string_append_kv (str, idt + 1, "PossiblePlugin", name);
|
||||
}
|
||||
|
||||
/* subclassed */
|
||||
if (klass->to_string != NULL)
|
||||
|
Loading…
Reference in New Issue
Block a user