mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-09 23:00:58 +00:00
23 lines
405 B
Go
23 lines
405 B
Go
// Copyright (C) 2014 The Protocol Authors.
|
|
|
|
package protocol
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/syncthing/syncthing/lib/logger"
|
|
)
|
|
|
|
var (
|
|
l = logger.DefaultLogger.NewFacility("protocol", "The BEP protocol")
|
|
)
|
|
|
|
func init() {
|
|
l.SetDebug("protocol", strings.Contains(os.Getenv("STTRACE"), "protocol") || os.Getenv("STTRACE") == "all")
|
|
}
|
|
|
|
func shouldDebug() bool {
|
|
return l.ShouldDebug("protocol")
|
|
}
|