# README
logger
Log it all
# Functions
Disables file logging and sets the file to the empty string("").
Gets the logger's flags.
Returns if file logging is enabled and, if so, the path to the file.
Returns the custom prefix.
Gets the logger's stream.
Log a message with a specified log type.
Same as Log, except accepts a format string and format arguments.
Logs a newline without any prefix(including the time, the custom prefix, and anything else from custom flags).
Sets the logger's flags.
Sets the logging file to the specified value, enabling file logging if necessary.
Sets the custom prefix.
Sets the logger's stream.
# Constants
LogDebug is used to log debug messages.
LogError is used to log error messages.
LogFatal is used log fatal messages and quit.
LogInfo is used to log information messages.
LogNoPrefix sets the type prefix to nothing.
LogWarning is used to log warning messages.