diff options
-rw-r--r-- | src/programs/pkttyagent.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/programs/pkttyagent.c b/src/programs/pkttyagent.c index bfe00bd..3f324b8 100644 --- a/src/programs/pkttyagent.c +++ b/src/programs/pkttyagent.c @@ -160,7 +160,8 @@ main (int argc, char *argv[]) authority = polkit_authority_get_sync (NULL /* GCancellable* */, &error); if (authority == NULL) { - g_printerr ("Error getting authority: %s (%s, %d)\n", + g_printerr ("Authorization not available. Check if polkit service is running or see debug message for more information.\n"); + g_debug ("Error getting authority: %s (%s, %d)\n", error->message, g_quark_to_string (error->domain), error->code); g_error_free (error); ret = 127; |