# Functions
Debug logs a debug message that might specifies the request id if provided by the context.
Error logs an error message that might contain the following attributes: pid, request id if provided by the context, file location of the caller, line that called the log Error function and the function name.
Info logs an info message that might contain the request id if provided by the context.
InitializeLogger creates a default logger with the given ouput format and log level.
IsDebug returns true if logger is set at DebugLevel.
Logger returns the current logger object.
LogRequest creates a request logger for the goa middleware.
NewCustomizedLogger creates a custom logger specifying the desired log level and the log format flag.
Panic logs a panic message that might contain the following attributes: the request id if provided by the context and the pid.
Warn logs a warning message that might contain the following attributes: request id if provided by the context, the file and the function name that invoked the Warn() function.