# Functions
DoNotUseRacyFatalMessage is FatalMessage, but worse.
FatalMessage returns the Meta and message contents of the first message logged with Fatal severity, or false if none has occurred.
ParseSeverity returns the case-insensitive Severity value for the given string.
Printf writes a log entry to all registered TextSinks in this package, then to all registered StructuredSinks.
# Constants
These constants identify the log levels in order of increasing severity.
Fatal contains logs written immediately before the process terminates.
These constants identify the log levels in order of increasing severity.
MaxLogMessageLen is the limit on length of a formatted log message, including the standard line prefix and trailing newline.
These constants identify the log levels in order of increasing severity.
# Variables
StructuredSinks is the set of Structured sink instances to which logs should be written.
TextSinks is the set of Text sink instances to which logs should be written.
# Structs
Meta is metadata about a logging call.
StructuredTextWrapper is a Structured sink which forwards logs to a set of Text sinks.
# Interfaces
StackWanter can be implemented by a logsink.Structured to indicate that it wants a stack trace to accompany at least some of the log messages it receives.
Structured is a logging destination that accepts structured data as input.
Text is a logging destination that accepts pre-formatted log lines (instead of structured data).
# Type aliases
A Severity is a severity at which a message can be logged.