mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-22 23:24:44 +00:00
Write statistics when saving result files in the GUI.
This commit is contained in:
parent
4b2f60a125
commit
ef499d5cf2
2 changed files with 3 additions and 1 deletions
|
|
@ -3,6 +3,7 @@
|
|||
Fixes:
|
||||
- gui: Fix display of warnings in property pane.
|
||||
Closes: SF bug #3263974
|
||||
- gui: Don't forget to write statistics when saving result files.
|
||||
- doc: Added configuration file locations in HTML documentation.
|
||||
- doc: Removed mentioning of old -s option from man page.
|
||||
- logging: Only write configured output parts in CSV logger.
|
||||
|
|
|
|||
|
|
@ -45,7 +45,8 @@ def urlsave (parent, config, urls):
|
|||
logger = config.logger_new(logtype, **kwargs)
|
||||
logger.start_output()
|
||||
for urlitem in urls:
|
||||
logger.log_url(urlitem.url_data)
|
||||
do_print = True
|
||||
logger.log_filter_url(urlitem.url_data, do_print)
|
||||
logger.end_output()
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue