Rename mc -> beacon

This commit is contained in:
Jakob Borg
2014-05-15 00:29:18 -03:00
parent 3e34fc66e6
commit adbd0b1834
4 changed files with 7 additions and 7 deletions

13
beacon/debug.go Normal file
View File

@@ -0,0 +1,13 @@
package beacon
import (
"os"
"strings"
"github.com/calmh/syncthing/logger"
)
var (
debug = strings.Contains(os.Getenv("STTRACE"), "beacon") || os.Getenv("STTRACE") == "all"
l = logger.DefaultLogger
)