mirror of
https://github.com/mirror/wget.git
synced 2025-03-25 01:00:13 +08:00
Print debug message when skipping certain recursive downloads
* src/recur.c (retrieve_tree): Print debug message instead silently skipping recursive downloads.
This commit is contained in:
parent
e4e9d3c1c8
commit
1bdc20d774
11
src/recur.c
11
src/recur.c
@ -456,9 +456,16 @@ retrieve_tree (struct url *start_url_parsed, struct iri *pi)
|
||||
reject_reason r;
|
||||
|
||||
if (child->ignore_when_downloading)
|
||||
continue;
|
||||
{
|
||||
DEBUGP (("Not following due to 'ignore' flag: %s\n", child->url->url));
|
||||
continue;
|
||||
}
|
||||
|
||||
if (dash_p_leaf_HTML && !child->link_inline_p)
|
||||
continue;
|
||||
{
|
||||
DEBUGP (("Not following due to 'link inline' flag: %s\n", child->url->url));
|
||||
continue;
|
||||
}
|
||||
|
||||
r = download_child (child, url_parsed, depth,
|
||||
start_url_parsed, blacklist, i);
|
||||
|
Loading…
Reference in New Issue
Block a user