From e21391f85d10ca6822fb10818c7e98557af90c4d Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Tue, 22 Feb 2022 12:55:25 +0000 Subject: [PATCH] trivial: Don't warn if the superclass is using custom flags --- libfwupdplugin/fu-device.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libfwupdplugin/fu-device.c b/libfwupdplugin/fu-device.c index 090e34349..0387d5208 100644 --- a/libfwupdplugin/fu-device.c +++ b/libfwupdplugin/fu-device.c @@ -3072,7 +3072,6 @@ fu_device_set_custom_flag(FuDevice *self, const gchar *hint) priv->private_flags &= ~item->value; return; } - g_debug("no registered custom flag %s on %s", hint + 1, G_OBJECT_TYPE_NAME(self)); return; } @@ -3092,7 +3091,6 @@ fu_device_set_custom_flag(FuDevice *self, const gchar *hint) priv->private_flags |= item->value; return; } - g_debug("no registered custom flag %s on %s", hint, G_OBJECT_TYPE_NAME(self)); } /**