diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2013-08-05 16:48:17 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2013-08-05 16:48:17 -0500 |
commit | c1ce02f2b8cd198712606888d08b36f1e7aefe39 (patch) | |
tree | 070c84ca09c0041eea98cd4be6be6cc97008470d /src/profile.vala | |
parent | 9837ce82575d089b52269ff600820d565be3fd22 (diff) | |
download | ayatana-indicator-bluetooth-c1ce02f2b8cd198712606888d08b36f1e7aefe39.tar.gz ayatana-indicator-bluetooth-c1ce02f2b8cd198712606888d08b36f1e7aefe39.tar.bz2 ayatana-indicator-bluetooth-c1ce02f2b8cd198712606888d08b36f1e7aefe39.zip |
fully implement the bluez/device backend. in the desktop profile, add menuitems for the devices.
Diffstat (limited to 'src/profile.vala')
-rw-r--r-- | src/profile.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/profile.vala b/src/profile.vala index 6dd5f52..360722d 100644 --- a/src/profile.vala +++ b/src/profile.vala @@ -43,12 +43,12 @@ class Profile: Object { try { - message ("exporting '%s' on %s", name, object_path); + debug (@"exporting '$name' on $object_path"); connection.export_menu_model (object_path, this.root); } catch (Error e) { - critical ("%s", e.message); + critical (@"Unable to export menu on $object_path: $(e.message)"); } } } |