# Functions
LogDebug creates a new debug level log entry
Example: logutil.LogLogDebug(msg).
LogError creates a new error level log entry
Example: logutil.LogError(msg).
LogFatal creates a new fatal level log entry
Example: logutil.LogFatal(msg).
LogInfo creates a new info level log entry
Example: logutil.LogInfo(msg).
LogTrace creates a new trace level log entry
Example: logutil.LogTrace(msg).
LogWarn creates a new warning level log entry
Example: logutil.LogWarn(msg).
New - This function creates a new logger
Parameters: timeFormat: the format to use for the log timestamps.
# Constants
LogLevelDebug defines the debug log level.
LogLevelError defines the error log level.
LogLevelFatal defines the fatal log level.
LogLevelInfo defines the info log level.
LogLevelTrace defines the trace log level.
LogLevelWarn defines the warning log level.
TimeFormatUnix defines the Unix time format.
TimeFormatUnixMicro defines the Unix microseconds time format.
TimeFormatUnixMs defines the Unix milliseconds time format.