diff options
author | charles kerr <charlesk@canonical.com> | 2015-12-21 12:25:11 -0600 |
---|---|---|
committer | charles kerr <charlesk@canonical.com> | 2015-12-21 12:25:11 -0600 |
commit | de4493a64a59e6905c6f3f02902783daa86c051e (patch) | |
tree | 47d32c413a29b6fef160bf13f7fc81b348c182cc /src/notification.vala | |
parent | d1b0d523e3ef744247187378ae3f1655d8622029 (diff) | |
download | ayatana-indicator-sound-de4493a64a59e6905c6f3f02902783daa86c051e.tar.gz ayatana-indicator-sound-de4493a64a59e6905c6f3f02902783daa86c051e.tar.bz2 ayatana-indicator-sound-de4493a64a59e6905c6f3f02902783daa86c051e.zip |
add tracer GLib.message() calls
Diffstat (limited to 'src/notification.vala')
-rw-r--r-- | src/notification.vala | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/notification.vala b/src/notification.vala index e5e1fd2..b8bad30 100644 --- a/src/notification.vala +++ b/src/notification.vala @@ -41,6 +41,7 @@ public abstract class IndicatorSound.Notification: Object protected void show_() { try { + GLib.message("calling _notification.show"); _notification.show (); message("after calling show, n.id is %d", (int)_notification.id); visible = true; @@ -66,8 +67,9 @@ public abstract class IndicatorSound.Notification: Object protected bool notify_server_supports(string cap) { if (_server_caps == null) { - message("getting server caps"); + GLib.message("getting server caps"); _server_caps = Notify.get_server_caps(); + GLib.message("got server caps"); } var ret = _server_caps.find_custom(cap, strcmp) != null; |