# Functions
Level returns the value specified in AZURE_GO_AUTOREST_LOG_LEVEL.
ParseLevel converts the specified string into the corresponding LevelType.
# Constants
LogDebug tells a logger to log all LogDebug, LogInfo, LogWarning, LogError, LogPanic and LogFatal entries passed to it.
LogError tells a logger to log all LogError, LogPanic and LogFatal entries passed to it.
LogFatal tells a logger to log all LogFatal entries passed to it.
LogInfo tells a logger to log all LogInfo, LogWarning, LogError, LogPanic and LogFatal entries passed to it.
LogNone tells a logger not to log any entries passed to it.
LogPanic tells a logger to log all LogPanic and LogFatal entries passed to it.
LogWarning tells a logger to log all LogWarning, LogError, LogPanic and LogFatal entries passed to it.
# Variables
Instance is the default log writer initialized during package init.
# Interfaces
Writer defines methods for writing to a logging facility.
# Type aliases
LevelType tells a logger the minimum level to log.