trivial: Don't warn if the superclass is using custom flags

This commit is contained in:
Richard Hughes 2022-02-22 12:55:25 +00:00
parent 4cd8468722
commit e21391f85d

View File

@ -3072,7 +3072,6 @@ fu_device_set_custom_flag(FuDevice *self, const gchar *hint)
priv->private_flags &= ~item->value; priv->private_flags &= ~item->value;
return; return;
} }
g_debug("no registered custom flag %s on %s", hint + 1, G_OBJECT_TYPE_NAME(self));
return; return;
} }
@ -3092,7 +3091,6 @@ fu_device_set_custom_flag(FuDevice *self, const gchar *hint)
priv->private_flags |= item->value; priv->private_flags |= item->value;
return; return;
} }
g_debug("no registered custom flag %s on %s", hint, G_OBJECT_TYPE_NAME(self));
} }
/** /**