def do_handle_log(self, workunit, level, *msg_elements):
Implementation of Reporter callback.
if not self.is_under_main_root(workunit):
return
// If the element is a (msg, detail) pair, we ignore the detail. There"s no
After Change
def do_handle_log(self, workunit, level, *msg_elements):
Implementation of Reporter callback.
if self.is_under_background_root(workunit):
return
// If the element is a (msg, detail) pair, we ignore the detail. There"s no