Moving the debug log at the proper place.
If we don't do this, we might get the following in the logs: 2014-04-08 20:00:59,354 - DEBUG: Section 'r' matches 2014-04-08 20:00:59,354 - DEBUG: Section 'r' does not match which is a bit confusing.
This commit is contained in:
parent
d053257643
commit
6677dbcdc9
@ -87,7 +87,8 @@ def _read_from_sections(user, collection, permission):
|
|||||||
log.LOGGER.debug("Section '%s' matches" % section)
|
log.LOGGER.debug("Section '%s' matches" % section)
|
||||||
if permission in regex.get(section, "permission"):
|
if permission in regex.get(section, "permission"):
|
||||||
return True
|
return True
|
||||||
log.LOGGER.debug("Section '%s' does not match" % section)
|
else:
|
||||||
|
log.LOGGER.debug("Section '%s' does not match" % section)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user