# Functions
All generates a human readable representation of the given list of strings, for use in a log file.
any generates a human readable representation of the given list of strings, for use in a log file.
NewGlogLoggerBuilder creates a builder that uses the glog V mechanism.
NewGoLoggerBuilder creates a builder that knows how to build a logger that uses the Go `log` package.
NewStdLoggerBuilder creates a builder that knows how to build a logger that uses the standard output and error streams, or custom writers.
# Structs
GlogLogger is a logger that uses the glog V mechanism.
GlogLoggerBuilder contains the configuration and logic needed to build a logger that uses the glog V mechanism.
GoLogger is a logger that uses the Go `log` package.
GoLoggerBuilder contains the configuration and logic needed to build a logger that uses the Go `log` package.
StdLogger is a logger that uses the standard output and error streams, or custom writers.
StdLoggerBuilder contains the configuration and logic needed to build a logger that uses the standard output and error streams, or custom writers.
# Interfaces
Logger is the interface that must be implemented by objects that are used for logging by the client.