You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
667 B
Go

5 years ago
package blammo
type Level uint
const (
// Debug is intended to be used for verbose logging information of
// implementation details.
Debug Level = iota
// Info is intended to be used to report expected behaviors; it's used to
// log usage and observe normal behaviors.
Info
// Warn is intended to be used to report events that are not along the
// expected "happy path" of the application. These events should generally
// represent failures of -other- systems.
Warn
// Error is intended to b e used to report things that the application was
// not able to handle. These events should generally represent failures of
// the system at hand.
Error
)