diff options
-rw-r--r-- | src/wakeup-timer-powerd.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/wakeup-timer-powerd.cpp b/src/wakeup-timer-powerd.cpp index ab6859f..27b037e 100644 --- a/src/wakeup-timer-powerd.cpp +++ b/src/wakeup-timer-powerd.cpp @@ -192,8 +192,13 @@ 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)) + /* powerd isn't on the desktop, but we don't need hardware wakeups there + anyway... so no need to warn on SERVICE_UNKNOWN */ + 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 { |