aboutsummaryrefslogtreecommitdiff
path: root/src/profile.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/profile.vala')
-rw-r--r--src/profile.vala4
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)");
}
}
}