equal
deleted
inserted
replaced
1964 **opts currently has no defined meanings. |
1964 **opts currently has no defined meanings. |
1965 ''' |
1965 ''' |
1966 if not self._loggers: |
1966 if not self._loggers: |
1967 return |
1967 return |
1968 activeloggers = [ |
1968 activeloggers = [ |
1969 l for l in self._loggers.itervalues() if l.tracked(event) |
1969 l for l in pycompat.itervalues(self._loggers) if l.tracked(event) |
1970 ] |
1970 ] |
1971 if not activeloggers: |
1971 if not activeloggers: |
1972 return |
1972 return |
1973 msg = msgfmt % msgargs |
1973 msg = msgfmt % msgargs |
1974 opts = pycompat.byteskwargs(opts) |
1974 opts = pycompat.byteskwargs(opts) |