mirror of
https://github.com/syncthing/syncthing.git
synced 2024-11-16 18:41:59 -07:00
13 lines
186 B
Go
13 lines
186 B
Go
package upnp
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
"strings"
|
|
)
|
|
|
|
var (
|
|
dlog = log.New(os.Stderr, "upnp: ", log.Lmicroseconds|log.Lshortfile)
|
|
debug = strings.Contains(os.Getenv("STTRACE"), "upnp")
|
|
)
|