# Packages
Package logfields defines common logging fields which are used across packages.
# Functions
CanLogAt returns whether a log message at the given level would be logged by the given logger.
GetLevel returns the log level of the given logger.
InitializeDefaultLogger returns a logrus Logger with a custom text formatter.
MultiLine breaks a multi line text into individual log entries and calls the logging function to log each entry.
SetLogLevel sets the log level on DefaultLogger.
SetupLogging sets up each logging service provided in loggers and configures each logger with the provided logOpts.
ToggleDebugLogs switches on or off debugging logs.
# Variables
DefaultLogger is the base logrus logger.
DefaultLogLevel is the alternative we provide to Debug.
DefaultLogLevelStr is the string representation of DefaultLogLevel.
LevelStringToLogrusLevel maps string representations of logrus.Level into their corresponding logrus.Level.