2018-06-21 14:49:35 +00:00
|
|
|
package hclog
|
|
|
|
|
|
|
|
import (
|
|
|
|
"sync"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
protect sync.Once
|
|
|
|
def Logger
|
|
|
|
|
2019-06-19 12:50:48 +00:00
|
|
|
// DefaultOptions is used to create the Default logger. These are read
|
|
|
|
// only when the Default logger is created, so set them as soon as the
|
|
|
|
// process starts.
|
2018-06-21 14:49:35 +00:00
|
|
|
DefaultOptions = &LoggerOptions{
|
|
|
|
Level: DefaultLevel,
|
|
|
|
Output: DefaultOutput,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2019-06-19 12:50:48 +00:00
|
|
|
// Default returns a globally held logger. This can be a good starting
|
2018-06-21 14:49:35 +00:00
|
|
|
// place, and then you can use .With() and .Name() to create sub-loggers
|
|
|
|
// to be used in more specific contexts.
|
|
|
|
func Default() Logger {
|
|
|
|
protect.Do(func() {
|
|
|
|
def = New(DefaultOptions)
|
|
|
|
})
|
|
|
|
|
|
|
|
return def
|
|
|
|
}
|
|
|
|
|
2019-06-19 12:50:48 +00:00
|
|
|
// L is a short alias for Default().
|
2018-06-21 14:49:35 +00:00
|
|
|
func L() Logger {
|
|
|
|
return Default()
|
|
|
|
}
|