diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2013-06-14 15:58:11 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2013-06-14 15:58:11 -0500 |
commit | bc63a95ba6cef880f17a77011042a38a4ea22e76 (patch) | |
tree | 8087d967f29c55c5fb5606ffe09e5203fc0e5b19 /src/main.c | |
parent | b7a6a66b79961e2b0103c34cf4f4b2e07843e648 (diff) | |
download | ayatana-indicator-datetime-bc63a95ba6cef880f17a77011042a38a4ea22e76.tar.gz ayatana-indicator-datetime-bc63a95ba6cef880f17a77011042a38a4ea22e76.tar.bz2 ayatana-indicator-datetime-bc63a95ba6cef880f17a77011042a38a4ea22e76.zip |
when we can't own the name, print a g_message saying so before exiting
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -65,7 +65,7 @@ parse_command_line (int * argc, char *** argv) static void on_name_lost (gpointer instance G_GNUC_UNUSED, gpointer loop) { - g_debug ("exiting: service couldn't acquire or lost ownership of busname"); + g_message ("exiting: service couldn't acquire or lost ownership of busname"); g_main_loop_quit ((GMainLoop*)loop); } |