Lines Matching full:log
6 # Generate an HTML-formatted log file containing multiple streams of data,
19 a multiplexed log file. Objects of this type should be created by factory
26 logfile: The Logfile object to log to.
27 name: The name of this log stream.
52 """Write data to the log stream.
58 repeat a shell prompt at the start of each separate log
59 section, which makes the log sections more readable in
71 """Flush the log stream, to ensure correct log interleaving.
85 """A utility object used to execute sub-processes and log their output to
86 a multiplexed log file. Objects of this type should be created by factory
93 logfile: The Logfile object to log to.
94 name: The name of this log stream or sub-process.
113 """Run a command as a sub-process, and log the results.
179 portion of test code to be logged to a separate section of the log file.
183 def __init__(self, log, marker, anchor): argument
187 log: The Logfile object to log to.
188 marker: The name of the nested log section.
195 self.log = log
200 self.anchor = self.log.start_section(self.marker, self.anchor)
203 self.log.end_section(self.marker)
206 """Generates an HTML-formatted log file containing multiple streams of
236 // Copy status report HTML to start of log for easy access
296 """Close the log file.
298 After calling this function, no more data may be written to the log.
315 # the log file.
339 """Write HTML to the log file to terminate the current stream's data.
359 """Write a note or one-off message to the log file.
364 msg: The note/message to log.
383 """Begin a new nested section in the log file.
410 """Terminate the current nested section in the log file.
439 """Create a temporary section in the log file.
443 section of the log file.
446 with log.section("somename"):
460 """Write an error note to the log file.
472 """Write an warning note to the log file.
484 """Write an informational note to the log file.
496 """Write an action note to the log file.
511 """Write a timestamp to the log file.
533 """Write a note to the log file describing test(s) which passed.
546 """Write a note to the log file describing skipped test(s).
559 """Write a note to the log file describing xfailed test(s).
572 """Write a note to the log file describing xpassed test(s).
585 """Write a note to the log file describing failed test(s).
598 """Create an object to log a single stream's data into the log file.
601 write a single stream's data to the log file. The implementation will
603 the log, in a way that makes it obvious which stream each bit of data
609 be logged to in addition to this log. Can be None.
632 """Write stream data into the log file.
639 data: The data to log.
642 repeat a shell prompt at the start of each separate log
643 section, which makes the log sections more readable in
665 """Flush the log stream, to ensure correct log interleaving.