mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-25 18:30:23 +00:00
file output must honor verbose/quiet flag
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@1693 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
751d60f924
commit
1b4c190778
2 changed files with 10 additions and 2 deletions
|
|
@ -8,6 +8,14 @@
|
|||
Type: documentation
|
||||
Changed: doc/upgrading.txt, doc/install.txt
|
||||
|
||||
* fix typo in redirection cache handling
|
||||
Type: bugfix
|
||||
Changed: linkcheck/checker/cache.py
|
||||
|
||||
* fileoutput must honor verbose/quiet configuration
|
||||
Type: bugfix
|
||||
Changed: linkcheck/checker/consumer.py
|
||||
|
||||
1.13.0 "The Butterfly Effect" (released 1.9.2004)
|
||||
* lots of internal code restructuring
|
||||
Type: code cleanup
|
||||
|
|
|
|||
|
|
@ -160,8 +160,8 @@ class Consumer (object):
|
|||
(self.config["verbose"] or not url_data.valid or
|
||||
(url_data.warning and self.config["warnings"])):
|
||||
self.logger.new_url(url_data)
|
||||
for log in self.fileoutput:
|
||||
log.new_url(url_data)
|
||||
for log in self.fileoutput:
|
||||
log.new_url(url_data)
|
||||
finally:
|
||||
self.lock.release()
|
||||
# XXX deadlock!
|
||||
|
|
|
|||
Loading…
Reference in a new issue