summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2013-05-15 18:32:29 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2013-05-15 18:32:29 +0100
commitdd5ec71a1f05f22d8dfba477d8338761f9768488 (patch)
treee380db8b499ca91ba9ddf976f6d0da6949a934ad /desktop
parentd34f03e69ef241db4eac442bce5d1143920bc3da (diff)
downloadnetsurf-dd5ec71a1f05f22d8dfba477d8338761f9768488.tar.gz
netsurf-dd5ec71a1f05f22d8dfba477d8338761f9768488.tar.bz2
Add logging to hotlist_cleanup() so we can narrow the field a little
Diffstat (limited to 'desktop')
-rw-r--r--desktop/hotlist.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/desktop/hotlist.c b/desktop/hotlist.c
index 20cc8ea26..055de3af8 100644
--- a/desktop/hotlist.c
+++ b/desktop/hotlist.c
@@ -199,9 +199,13 @@ unsigned int hotlist_get_tree_flags(void)
*/
void hotlist_cleanup(const char *hotlist_path)
{
+ LOG(("Exporting hotlist..."));
hotlist_export(hotlist_path);
+ LOG(("Releasing handles..."));
hlcache_handle_release(folder_icon);
+ LOG(("Clearing hotlist tree nodes..."));
tree_url_node_cleanup();
+ LOG(("Hotlist cleaned up."));
}