# Functions
NewLogReader wraps an io.ReadCloser in a LogReader.
NewLogWriter wraps an io.WriteCloser in a LogWriter.
ParseLogEntry parses data from an io.Reader into a Entry.
# Constants
RFC3339NanoFixed is Docker's version of RFC339Nano that pads the nanoseconds with zeros to ensure that the timestamps are aligned in the logs.
# Structs
Entry describes a containerVM log entry.
Header describes the header of a containerVM log entry.
LogClock is an implementation of the Clock interface that returns time.Now() for use in the iolog package.
LogReader reads containerVM entries from a stream and decodes them into their original form.
LogWriter tags log entries with a descriptive header and writes them to the underlying io.Writer.
# Interfaces
Clock defines an interface that wraps time.Now().