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:
calvin 2004-09-03 08:26:10 +00:00
parent 751d60f924
commit 1b4c190778
2 changed files with 10 additions and 2 deletions

View file

@ -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

View file

@ -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!