# Functions
NewStandardLogger returns a new StandardLogger.
WithContext will pass the provided context to logger if it implements the ContextLogger interface and return the resulting logger.
# Structs
Nop is a Logger implementation that simply does not perform any logging.
StandardLogger is a Logger implementation that wraps the standard library logger, and delegates logging to it's Printf method.
# Interfaces
ContextLogger is an optional interface a Logger implementation may expose that provides the ability to create context aware log entries.
Logger is an interface for logging entries at certain classifications.
# Type aliases
Classification is the type of the log entry's classification name.
LoggerFunc is a wrapper around a function to satisfy the Logger interface.