syncthing/cmd/relaysrv/client/debug.go
Audrius Butkevicius dc9c86e3a1 Change EOL
2015-06-28 21:18:38 +01:00

16 lines
290 B
Go

// Copyright (C) 2015 Audrius Butkevicius and Contributors (see the CONTRIBUTORS file).
package client
import (
"os"
"strings"
"github.com/calmh/logger"
)
var (
debug = strings.Contains(os.Getenv("STTRACE"), "relay") || os.Getenv("STTRACE") == "all"
l = logger.DefaultLogger
)