diff options
Diffstat (limited to 'embed/ephy-embed-persist.c')
-rw-r--r-- | embed/ephy-embed-persist.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/embed/ephy-embed-persist.c b/embed/ephy-embed-persist.c index 33b5b7eb7..08dfd025b 100644 --- a/embed/ephy-embed-persist.c +++ b/embed/ephy-embed-persist.c @@ -19,7 +19,7 @@ #include <config.h> #include "ephy-embed-persist.h" - +#include "ephy-debug.h" #include "mozilla-embed.h" #include "mozilla-embed-persist.h" @@ -281,6 +281,8 @@ ephy_embed_persist_init (EphyEmbedPersist *persist) persist->priv->src = NULL; persist->priv->dir = NULL; persist->priv->handler = NULL; + + LOG ("Embed persist init") } static void @@ -306,6 +308,8 @@ ephy_embed_persist_finalize (GObject *object) g_free (persist->priv); + LOG ("Embed persist finalize") + G_OBJECT_CLASS (parent_class)->finalize (object); } |