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-28 14:36:57 +01:00
|
|
|
package files
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"os"
|
|
|
|
|
"strings"
|
2014-05-14 21:08:56 -03:00
|
|
|
|
|
|
|
|
"github.com/calmh/syncthing/logger"
|
2014-03-28 14:36:57 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var (
|
2014-05-14 21:08:56 -03:00
|
|
|
debug = strings.Contains(os.Getenv("STTRACE"), "files") || os.Getenv("STTRACE") == "all"
|
|
|
|
|
l = logger.DefaultLogger
|
2014-03-28 14:36:57 +01:00
|
|
|
)
|