# Functions
Append writes a string into the buffer.
Bind creates a direct binding for the given logger.
Format composes multiple formatters into one.
Level is a formatter that prints the level of the log event.
Message is a formatter that prints the formatted message.
New creates a synchronized logger backed by a given writer.
Scene is a formatter that prints the elements of the scene.
StandardFormat produces a formatter that includes all conventional elements — the timestamp, log level, message, and the scene contents.
Timestamp is a formatter that prints the timestamp of the log event using the layout supplied.
# Constants
TimestampLayoutDateTime is a full layout containing both a date and a time portion.
TimestampLayoutDefault is the default layout applied in the formatter returned by Timestamp().
TimestampLayoutTimeOnly contains only the time.
# Interfaces
Overlog is a synchronized logger backed by an io.Writer, suitable for use in concurrent applications where an unsynchronized logger would result in interleaved log entries.
# Type aliases
Formatter specifies how a logging event should be rendered in a given output buffer.