syncthing/mc/debug.go

14 lines
204 B
Go
Raw Normal View History

2014-03-28 03:04:48 -07:00
package mc
import (
"os"
"strings"
2014-05-14 17:08:56 -07:00
"github.com/calmh/syncthing/logger"
2014-03-28 03:04:48 -07:00
)
var (
2014-05-14 17:08:56 -07:00
debug = strings.Contains(os.Getenv("STTRACE"), "mc") || os.Getenv("STTRACE") == "all"
l = logger.DefaultLogger
2014-03-28 03:04:48 -07:00
)