syncthing/model/debug.go

14 lines
210 B
Go
Raw Normal View History

2014-05-15 05:26:55 +02:00
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
)