1
0
mirror of https://github.com/octoleo/syncthing.git synced 2025-01-14 03:23:36 +00:00
syncthing/discover/debug.go
2014-08-01 16:48:46 +02:00

18 lines
426 B
Go

// Copyright (C) 2014 Jakob Borg and Contributors (see the CONTRIBUTORS file).
// All rights reserved. Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.
package discover
import (
"os"
"strings"
"github.com/syncthing/syncthing/logger"
)
var (
debug = strings.Contains(os.Getenv("STTRACE"), "discover") || os.Getenv("STTRACE") == "all"
l = logger.DefaultLogger
)