summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <philip.withnall@collabora.co.uk>2015-06-17 17:18:04 +0100
committerPhilip Withnall <philip.withnall@collabora.co.uk>2015-06-17 17:19:25 +0100
commit70327ca30815038f5736e10f8d731fdc0fa171d7 (patch)
treee8a13b64f252c8769740d13c6eda0ebb176c473a
parent2244e263e394a66db97df383eb67697a126dee38 (diff)
downloadfolks-70327ca30815038f5736e10f8d731fdc0fa171d7.tar.gz
tests: Improve debug output from the EDS test utilities
-rw-r--r--tests/lib/eds/backend.vala6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/lib/eds/backend.vala b/tests/lib/eds/backend.vala
index 2d4fae0a..b907f206 100644
--- a/tests/lib/eds/backend.vala
+++ b/tests/lib/eds/backend.vala
@@ -360,13 +360,15 @@ public class EdsTest.Backend
{
if (this._source_file != null)
{
+ debug ("Deleting address book ‘%s’ source file ‘%s’.",
+ this._addressbook_name, this._source_file.get_path ());
this._source_file.delete ();
}
}
catch (GLib.Error e)
{
- GLib.warning ("Unable to remove addressbook ‘%s’: %s",
- this._addressbook_name, e.message);
+ GLib.error ("Unable to remove address book ‘%s’ source file ‘%s’: %s",
+ this._addressbook_name, this._source_file.get_path (), e.message);
}
finally
{