mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-08 22:31:04 +00:00
f87b1520e8
Rewrite of the file model and pulling mechanism. Needs lots of cleanup and bugfixes, now...
13 lines
189 B
Go
13 lines
189 B
Go
package files
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
"strings"
|
|
)
|
|
|
|
var (
|
|
dlog = log.New(os.Stderr, "files: ", log.Lmicroseconds|log.Lshortfile)
|
|
debug = strings.Contains(os.Getenv("STTRACE"), "files")
|
|
)
|