This repository has been archived on 2026-05-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2014-03-09 09:15:36 +01:00
|
|
|
package discover
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"os"
|
|
|
|
|
"strings"
|
2014-05-14 21:08:56 -03:00
|
|
|
|
|
|
|
|
"github.com/calmh/syncthing/logger"
|
2014-03-09 09:15:36 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var (
|
2014-05-14 21:08:56 -03:00
|
|
|
debug = strings.Contains(os.Getenv("STTRACE"), "discover") || os.Getenv("STTRACE") == "all"
|
|
|
|
|
l = logger.DefaultLogger
|
2014-03-09 09:15:36 +01:00
|
|
|
)
|