summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakob Borg <jakob@nym.se>2014-07-01 11:58:53 +0200
committerJakob Borg <jakob@nym.se>2014-07-01 17:06:07 +0200
commit7ac00e189b8ddaa7654c61becdd1c3391e6df50a (patch)
tree3ca3aab6ac5992a987e247573776dfeaf10c0fb2
parenta2da31056b3ef6d619feb542552c0c82274a50eb (diff)
Tone down UPnP not found message (fixes #406)
-rw-r--r--cmd/syncthing/main.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/cmd/syncthing/main.go b/cmd/syncthing/main.go
index d5fc32aae9..ba64fd384e 100644
--- a/cmd/syncthing/main.go
+++ b/cmd/syncthing/main.go
@@ -483,7 +483,10 @@ func setupUPnP(r rand.Source) int {
l.Warnln("Failed to create UPnP port mapping")
}
} else {
- l.Infof("No UPnP IGD device found, no port mapping created (%v)", err)
+ l.Infof("No UPnP gateway detected")
+ if debugNet {
+ l.Debugf("UPnP: %v", err)
+ }
}
}
} else {