diff options
Diffstat (limited to 'embed/ephy-favicon-cache.c')
-rw-r--r-- | embed/ephy-favicon-cache.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/embed/ephy-favicon-cache.c b/embed/ephy-favicon-cache.c index 029470d26..e833cf2c7 100644 --- a/embed/ephy-favicon-cache.c +++ b/embed/ephy-favicon-cache.c @@ -26,6 +26,7 @@ #include "ephy-file-helpers.h" #include "ephy-favicon-cache.h" #include "ephy-node.h" +#include "ephy-debug.h" #define EPHY_FAVICON_CACHE_XML_VERSION "0.1" @@ -51,11 +52,6 @@ enum LAST_SIGNAL }; -enum -{ - ICONS_NODE_ID = 9, -}; - static guint ephy_favicon_cache_signals[LAST_SIGNAL] = { 0 }; static GObjectClass *parent_class = NULL; @@ -395,6 +391,8 @@ ephy_favicon_cache_download (EphyFaviconCache *cache, EphyEmbedPersist *persist; const char *dest; + LOG ("Download favicon: %s", favicon_url) + g_return_if_fail (EPHY_IS_FAVICON_CACHE (cache)); g_return_if_fail (favicon_url != NULL); g_return_if_fail (filename != NULL); |