call site 0 for log.Producer.get_consumer
log/testing/test_log.py - line 102
97
98
99
100
101
102
103
104
105
106
   def test_multi_consumer(self): 
       l = []
       py.log.setconsumer("x1", l.append)
       py.log.setconsumer("x1 x2", None) 
       p = py.log.Producer("x1 x2")
->     p("hello")
       assert not l
       py.log.Producer("x1")("hello")
       assert l
       assert l[0].content() == "hello"
log/producer.py - line 53
51
52
53
54
55
   def __call__(self, *args):
       """ write a message to the appropriate consumer(s) """
->     func = self.get_consumer(self.keywords)
       if func is not None: 
           func(self.Message(self.keywords, args))