call site 0 for log.Path.__call__
log/testing/test_log.py - line 131
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
   def test_log_file_append_mode(self):
       logfilefn = tempdir.join('log_append.out')
   
       # The append mode is on by default, so we don't need to specify it for File
       py.log.setconsumer("default", py.log.Path(logfilefn, append=True, 
                                                   buffering=0))
       assert logfilefn.check()
->     py.log.default("hello world #1") 
       lines = logfilefn.readlines() 
       assert lines == ['[default] hello world #1\n']
       py.log.setconsumer("default", py.log.Path(logfilefn, append=True,
                                                   buffering=0))
       py.log.default("hello world #1") 
       lines = logfilefn.readlines() 
       assert lines == ['[default] hello world #1\n', 
                        '[default] hello world #1\n']
log/producer.py - line 55
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))