syncthing/model/debug.go
2014-05-15 00:33:40 -03:00

14 lines
210 B
Go

package model
import (
"os"
"strings"
"github.com/calmh/syncthing/logger"
)
var (
debug = strings.Contains(os.Getenv("STTRACE"), "model") || os.Getenv("STTRACE") == "all"
l = logger.DefaultLogger
)