summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2023-02-25 15:49:58 +0100
committerBastien Nocera <hadess@hadess.net>2023-02-27 14:12:39 +0100
commit7df5f2907cd78292061ad18ac6943c8615cfe091 (patch)
tree5a47159353f0fa500d1d4f01b880d1e3588ad9ab
parent3bf5a095ac477e4f1cc4cabc92ae2761564dffe1 (diff)
downloadupower-7df5f2907cd78292061ad18ac6943c8615cfe091.tar.gz
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: 29ecd92f9ce4 ("linux: Fix BlueZ device names not synchronising")
-rw-r--r--src/linux/up-device-bluez.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linux/up-device-bluez.c b/src/linux/up-device-bluez.c
index d10cc56..ae00aad 100644
--- a/src/linux/up-device-bluez.c
+++ b/src/linux/up-device-bluez.c
@@ -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);