mirror of
https://github.com/octoleo/restic.git
synced 2024-11-17 02:25:12 +00:00
debug: init debug logger before init() methods run
This commit is contained in:
parent
ca77655971
commit
9d29a61861
@ -20,12 +20,18 @@ var opts struct {
|
||||
m sync.Mutex
|
||||
}
|
||||
|
||||
func init() {
|
||||
// make sure that all the initialization happens before the init() functions
|
||||
// are called, cf https://golang.org/ref/spec#Package_initialization
|
||||
var _ = initDebug()
|
||||
|
||||
func initDebug() bool {
|
||||
initDebugLogger()
|
||||
initDebugTags()
|
||||
initDebugBreaks()
|
||||
|
||||
fmt.Fprintf(os.Stderr, "debug enabled\n")
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
func initDebugLogger() {
|
||||
|
Loading…
Reference in New Issue
Block a user