aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDiego Escalante Urrelo <diegoe@igalia.com>2012-05-27 08:18:32 +0800
committerDiego Escalante Urrelo <diegoe@igalia.com>2012-06-15 07:32:09 +0800
commit27a4bdbc192302b7424d4400ceecc1f1a0cca432 (patch)
tree6c39415b6b4cc32e95e42ccdc8459f314dbe7bc5 /lib
parentb6cdb8bec9d26947eaa89a7e74b4bd5a5cbb2677 (diff)
downloadgsoc2013-epiphany-27a4bdbc192302b7424d4400ceecc1f1a0cca432.tar
gsoc2013-epiphany-27a4bdbc192302b7424d4400ceecc1f1a0cca432.tar.gz
gsoc2013-epiphany-27a4bdbc192302b7424d4400ceecc1f1a0cca432.tar.bz2
gsoc2013-epiphany-27a4bdbc192302b7424d4400ceecc1f1a0cca432.tar.lz
gsoc2013-epiphany-27a4bdbc192302b7424d4400ceecc1f1a0cca432.tar.xz
gsoc2013-epiphany-27a4bdbc192302b7424d4400ceecc1f1a0cca432.tar.zst
gsoc2013-epiphany-27a4bdbc192302b7424d4400ceecc1f1a0cca432.zip
e-history-service: print db file when open fails
Diffstat (limited to 'lib')
-rw-r--r--lib/history/ephy-history-service.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/history/ephy-history-service.c b/lib/history/ephy-history-service.c
index 7d5a49e9a..1f20519c1 100644
--- a/lib/history/ephy-history-service.c
+++ b/lib/history/ephy-history-service.c
@@ -269,7 +269,7 @@ ephy_history_service_open_database_connections (EphyHistoryService *self)
if (error) {
g_object_unref (priv->history_database);
priv->history_database = NULL;
- g_error ("Could not open history database: %s", error->message);
+ g_error ("Could not open history database at %s: %s", priv->history_filename, error->message);
g_error_free (error);
return FALSE;
}