2
2
mirror of https://github.com/octoleo/restic.git synced 2024-09-29 06:59:01 +00:00

debug: init debug logger before init() methods run

This commit is contained in:
Alexander Neumann 2015-05-01 15:39:01 +02:00
parent ca77655971
commit 9d29a61861

View File

@ -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() {