From b4db6b24159ac704a0ac37d280534bc8761240a9 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Tue, 4 Nov 2014 10:00:42 -0600 Subject: silence 'com.canonical.powerd was not provided by any .service files' warning on desktop --- src/wakeup-timer-powerd.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/wakeup-timer-powerd.cpp') diff --git a/src/wakeup-timer-powerd.cpp b/src/wakeup-timer-powerd.cpp index ab6859f..04db898 100644 --- a/src/wakeup-timer-powerd.cpp +++ b/src/wakeup-timer-powerd.cpp @@ -192,8 +192,11 @@ private: ret = g_dbus_connection_call_finish(G_DBUS_CONNECTION(o), res, &error); if (ret == nullptr) { - if (!g_error_matches(error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) + if (!g_error_matches(error, G_IO_ERROR, G_IO_ERROR_CANCELLED) && + !g_error_matches(error, G_DBUS_ERROR, G_DBUS_ERROR_SERVICE_UNKNOWN)) + { g_warning("%s Could not set hardware wakeup: %s", G_STRLOC, error->message); + } } else { -- cgit v1.2.3