linux: Demote warning to debug

Fixes warnings like:
(upowerd:133931): UPower-Linux-WARNING **: 02:49:48.011: Unhandled key: ServicesResolved value: false
(upowerd:133931): UPower-Linux-WARNING **: 02:49:48.012: Unhandled key: Connected value: false

Fixes: 29ecd92f9c ("linux: Fix BlueZ device names not synchronising")
This commit is contained in:
Bastien Nocera 2023-02-25 15:49:58 +01:00
parent 3bf5a095ac
commit 7df5f2907c

View file

@ -275,7 +275,7 @@ up_device_bluez_update (UpDeviceBluez *bluez,
} else {
char *str = g_variant_print (value, TRUE);
g_warning ("Unhandled key: %s value: %s", key, str);
g_debug ("Unhandled key: %s value: %s", key, str);
g_free (str);
}
g_variant_unref (value);