From b88ce6a317ed607f6faa5c66481676b207bfdf41 Mon Sep 17 00:00:00 2001 From: Ana Cabral Date: Tue, 25 Jan 2022 11:28:59 +0100 Subject: [PATCH] core/wwan: fix log domain --- src/core/devices/wwan/nm-device-modem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/devices/wwan/nm-device-modem.c b/src/core/devices/wwan/nm-device-modem.c index 656fb82613..80691bf976 100644 --- a/src/core/devices/wwan/nm-device-modem.c +++ b/src/core/devices/wwan/nm-device-modem.c @@ -173,7 +173,7 @@ modem_new_config(NMModem *modem, g_return_if_fail(nm_device_devip_get_state(device, addr_family) == NM_DEVICE_IP_STATE_PENDING); if (error) { - _LOGW(LOGD_MB | LOGD_IP4, "retrieving IP configuration failed: %s", error->message); + _LOGW(LOGD_MB, "retrieving IP configuration failed: %s", error->message); nm_device_devip_set_failed(device, addr_family, failure_reason_i); return; }