This is to unify logging mechanisms used in the spiders. Previously some spiders used self.log.
In some cases (spiders.common.*) spiders create the logger independently via logging.getLogger. I am leaving this, as it provides additional debugging information to know that the message comes from the superclass.
Related Issue
Closes #183.
Checklist:
[x] I have all the information that I need (if not, move to RFC and look for it).
[x] I linked the related issue(s) in the corresponding commit logs.
Description
This is to unify logging mechanisms used in the spiders. Previously some spiders used
self.log
.In some cases (
spiders.common.*
) spiders create the logger independently vialogging.getLogger
. I am leaving this, as it provides additional debugging information to know that the message comes from the superclass.Related Issue
Closes #183.
Checklist:
RFC
and look for it).